Use constant and not boolean.

This commit is contained in:
Mikaël Ates 2012-03-19 18:03:13 +01:00
parent e2bc1d351b
commit 64c19f2043
1 changed files with 2 additions and 2 deletions

View File

@ -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)