From c98717ef2a62c80faab69552bbd1890579592c1e Mon Sep 17 00:00:00 2001 From: Ferry Boender Date: Sun, 10 May 2015 11:54:56 +0200 Subject: [PATCH] Removed debugging output. --- src/scriptform.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/scriptform.py b/src/scriptform.py index d085d1b..855a87a 100755 --- a/src/scriptform.py +++ b/src/scriptform.py @@ -616,7 +616,6 @@ class ScriptFormWebApp(WebAppHandler): if username in form_config.users and \ pw_hash == form_config.users[username]: self.username = username - print self.username authorized = True if not authorized: @@ -693,7 +692,6 @@ class ScriptFormWebApp(WebAppHandler): if field['type'] == 'string': input = tpl.format(required, field['name'], field_value) - print input elif field['type'] == 'number' or \ field['type'] == 'integer' or \ field['type'] == 'float':