Make the enabling of TEMPLATE_DEBUG more clear.
authorMatthijs Kooijman <matthijs@stdin.nl>
Fri, 31 Oct 2008 09:07:07 +0000 (10:07 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Fri, 31 Oct 2008 09:07:07 +0000 (10:07 +0100)
TEMPLATE_DEBUG used to be initialized with the value of DEBUG in
settings.py, which was confusing if you change the value of DEBUG in
localsettings.

localsettings.py.tmpl
settings.py

index bf3ddb12d1a5524c2a3298dcfbfc154207ebfb32..58a45447820cf65000be1bfbd8ed99d4225e3c47 100644 (file)
@@ -1,5 +1,6 @@
 # Put any settings that are specific to this installation in here.
 # Any settings from settings.py can be overridden.
 
-# For example, enable debugging by commenting in the following line.
+# For example, enable debugging by commenting in the following lines.
 #DEBUG = True
+#TEMPLATE_DEBUG = True
index 655a76926478ddb83c57d9aac4141fb9c6a7290e..e66d70964fa448c0c65622a71f461cf96e280c8b 100644 (file)
@@ -9,7 +9,7 @@ from dbsettings import *
 PROJECT_DIR = os.path.dirname(__file__)
 
 DEBUG = False
-TEMPLATE_DEBUG = DEBUG
+TEMPLATE_DEBUG = False
 
 ADMINS = (
     # Server errors get sent here