0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 03:31:04 +01:00

Merge pull request #1688 from maxxst/master

updated settings so that there is no decrepation warning
This commit is contained in:
Karl Hobley 2015-10-09 09:54:27 +01:00
commit 80fbdca1a2
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,9 @@ from .base import *
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
TEMPLATE_DEBUG = True
for template_engine in TEMPLATES:
template_engine['OPTIONS']['debug'] = True
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '{{ secret_key }}'

View File

@ -2,8 +2,6 @@ from .base import *
DEBUG = False
TEMPLATE_DEBUG = False
try:
from .local import *