Change Django settings from tuples to lists to prep for 1.11 upgrade

This commit is contained in:
bmedx
2017-09-25 10:06:17 -04:00
parent 1dc9b1194f
commit 21791ccb58
26 changed files with 125 additions and 124 deletions

View File

@@ -63,7 +63,9 @@ DJFS = {
CELERY_ALWAYS_EAGER = True
################################ DEBUG TOOLBAR ################################
INSTALLED_APPS += ('debug_toolbar', 'debug_toolbar_mongo')
INSTALLED_APPS += ['debug_toolbar', 'debug_toolbar_mongo']
MIDDLEWARE_CLASSES.append('debug_toolbar.middleware.DebugToolbarMiddleware')
INTERNAL_IPS = ('127.0.0.1',)