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

@@ -43,9 +43,9 @@ STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
# Serve static files at /static directly from the staticfiles directory under test root.
# Note: optimized files for testing are generated with settings from test_static_optimized
STATIC_URL = "/static/"
STATICFILES_FINDERS = (
STATICFILES_FINDERS = [
'django.contrib.staticfiles.finders.FileSystemFinder',
)
]
STATICFILES_DIRS = [
(TEST_ROOT / "staticfiles" / "cms").abspath(),
]