Fix formatting of the production template engine overrides

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2017-03-09 01:02:45 -04:00
parent 38f5ce86d8
commit 5abb678433

View File

@@ -7,10 +7,12 @@ from . import * # NOQA
ALLOWED_HOSTS = ['*']
TEMPLATES[0]['OPTIONS']['loaders'] = (
'django.template.loaders.cached.Loader', (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)
(
'django.template.loaders.cached.Loader', (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)
),
)
CELERY_ALWAYS_EAGER = False