From 5b94b419e97a878ea573c32c58e7fb69540018a5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 29 Dec 2016 13:14:34 -0400 Subject: [PATCH] Update base development settings to work with Django 1.10.x --- mayan/settings/development.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mayan/settings/development.py b/mayan/settings/development.py index 135a7f0a3f..7a5ece71d5 100644 --- a/mayan/settings/development.py +++ b/mayan/settings/development.py @@ -3,13 +3,12 @@ from __future__ import absolute_import, unicode_literals from . import * # NOQA DEBUG = True -TEMPLATE_DEBUG = DEBUG ALLOWED_HOSTS = ['*'] -TEMPLATE_LOADERS = ( +TEMPLATES[0]['OPTIONS']['loaders'] = ( 'django.template.loaders.filesystem.Loader', - 'django.template.loaders.app_directories.Loader' + 'django.template.loaders.app_directories.Loader', ) INSTALLED_APPS += (