Move DEBUG settings local variable to untracked local file. buildout
authorMadhusudan.C.S <madhusudancs@gmail.com>
Mon, 10 Jan 2011 18:34:48 +0530
branchbuildout
changeset 233 cb3fbfc78c34
parent 232 eae55e6b109f
child 234 8895c6020abc
Move DEBUG settings local variable to untracked local file.
pytask/settings.py
--- a/pytask/settings.py	Sat Jan 08 02:14:29 2011 +0530
+++ b/pytask/settings.py	Mon Jan 10 18:34:48 2011 +0530
@@ -4,9 +4,8 @@
 
 from pytask.local import DATABASE_PASSWORD
 from pytask.local import DATABASE_USER
-
-DEBUG = True
-TEMPLATE_DEBUG = DEBUG
+from pytask.local import DEBUG 
+from pytask.local import TEMPLATE_DEBUG
 
 ADMINS = (
     ('Madhusudan C.S.', 'madhusudancs@fossee.in'),