From 07d1fc82b1c42b396dd6e946262cf884a88de496 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Thu, 6 Dec 2018 09:59:14 +0100 Subject: [PATCH] settings: remove default STATICFILES_DIRS (fixes #28667) --- src/authentic2/settings.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/authentic2/settings.py b/src/authentic2/settings.py index 8c9289a6..1de62951 100644 --- a/src/authentic2/settings.py +++ b/src/authentic2/settings.py @@ -101,8 +101,6 @@ MIDDLEWARE_CLASSES = plugins.register_plugins_middleware(MIDDLEWARE_CLASSES) ROOT_URLCONF = 'authentic2.urls' -STATICFILES_DIRS = (os.path.join(BASE_DIR, 'static'),) - STATICFILES_FINDERS = list(global_settings.STATICFILES_FINDERS) + ['gadjo.finders.XStaticFinder'] LOCALE_PATHS = ( os.path.join(BASE_DIR, 'locale'), ) -- 2.18.0