Projet

Général

Profil

0001-settings-remove-default-STATICFILES_DIRS-fixes-28667.patch

Benjamin Dauvergne, 06 décembre 2018 09:59

Télécharger (835 octets)

Voir les différences:

Subject: [PATCH] settings: remove default STATICFILES_DIRS (fixes #28667)

 src/authentic2/settings.py | 2 --
 1 file changed, 2 deletions(-)
src/authentic2/settings.py
101 101

  
102 102
ROOT_URLCONF = 'authentic2.urls'
103 103

  
104
STATICFILES_DIRS = (os.path.join(BASE_DIR, 'static'),)
105

  
106 104
STATICFILES_FINDERS = list(global_settings.STATICFILES_FINDERS) + ['gadjo.finders.XStaticFinder']
107 105

  
108 106
LOCALE_PATHS = ( os.path.join(BASE_DIR, 'locale'), )
109
-