From 64c19f204342f5796d242727e88c641e42cf2e41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Ates?= Date: Mon, 19 Mar 2012 18:03:13 +0100 Subject: [PATCH] Use constant and not boolean. --- acs/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acs/settings.py b/acs/settings.py index 984c17d..0658309 100644 --- a/acs/settings.py +++ b/acs/settings.py @@ -6,9 +6,9 @@ import os import sys DEBUG = True -USE_DEBUG_TOOLBAR = True +USE_DEBUG_TOOLBAR = DEBUG TEMPLATE_DEBUG = DEBUG -STATIC_SERVE = True +STATIC_SERVE = DEBUG _PROJECT_PATH = os.path.join(os.path.dirname(__file__)) sys.path.append(_PROJECT_PATH)