From 5abb6784333ee01c1808f51c4165dd0a2ae652b2 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 9 Mar 2017 01:02:45 -0400 Subject: [PATCH] Fix formatting of the production template engine overrides Signed-off-by: Roberto Rosario --- mayan/settings/production.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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