From: Michael Tremer Date: Tue, 18 Jan 2011 22:11:47 +0000 (+0100) Subject: Disable debugging mode. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=84e0a6d890fef618b5b17f88fc539de2fb3fea34;p=ipfire.org.git Disable debugging mode. --- diff --git a/www/webapp/__init__.py b/www/webapp/__init__.py index fb1bca7a..5a11fcf3 100644 --- a/www/webapp/__init__.py +++ b/www/webapp/__init__.py @@ -21,7 +21,7 @@ class Application(tornado.web.Application): def __init__(self): settings = dict( cookie_secret = "aXBmaXJlY29va2llc2VjcmV0Cg==", - debug = True, + debug = False, gzip = True, login_url = "/login", template_path = os.path.join(BASEDIR, "templates"),