From b400c4ed79432355dde0067c754fd7108a5d7ea7 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Fri, 14 May 2010 08:59:36 +0000 Subject: [PATCH] Remove debug setting as default svn: r15411 --- src/web/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/settings.py b/src/web/settings.py index 012264397..322442592 100644 --- a/src/web/settings.py +++ b/src/web/settings.py @@ -26,7 +26,7 @@ import const import os -DEBUG = True +DEBUG = False TEMPLATE_DEBUG = DEBUG INTERNAL_IPS = ('127.0.0.1',) @@ -72,7 +72,7 @@ TEMPLATE_DIRS = ( TEMPLATE_CONTEXT_PROCESSORS = ( "django.core.context_processors.auth", - "django.core.context_processors.debug", +# "django.core.context_processors.debug", "django.core.context_processors.i18n", "django.core.context_processors.media", "web.grampsdb.views.context_processor",