diff --git a/mayan/settings/production.py b/mayan/settings/production.py index fa8a4c4ae6..908b6704e3 100644 --- a/mayan/settings/production.py +++ b/mayan/settings/production.py @@ -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