Projet

Général

Profil

0001-debian-don-t-reference-undefined-STATICFILES_DIRS-28.patch

Frédéric Péters, 07 décembre 2018 08:22

Télécharger (1,57 ko)

Voir les différences:

Subject: [PATCH] debian: don't reference undefined STATICFILES_DIRS (#28727)

 debian-wheezy/debian_config.py | 2 +-
 debian/debian_config.py        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
debian-wheezy/debian_config.py
10 10
DEBUG = False
11 11

  
12 12
STATIC_ROOT = '/var/lib/authentic2/collectstatic/'
13
STATICFILES_DIRS = ('/var/lib/authentic2/static',) + STATICFILES_DIRS
13
STATICFILES_DIRS = ('/var/lib/authentic2/static',)
14 14
TEMPLATE_DIRS = ('/var/lib/authentic2/templates',) + TEMPLATE_DIRS
15 15
LOCALE_PATHS = ('/var/lib/authentic2/locale',) + LOCALE_PATHS
16 16

  
debian/debian_config.py
10 10
DEBUG = False
11 11

  
12 12
STATIC_ROOT = '/var/lib/authentic2/collectstatic/'
13
STATICFILES_DIRS = ('/var/lib/authentic2/static',) + STATICFILES_DIRS
13
STATICFILES_DIRS = ('/var/lib/authentic2/static',)
14 14
TEMPLATES[0]['DIRS'] = ['/var/lib/authentic2/templates'] + TEMPLATES[0]['DIRS']
15 15
LOCALE_PATHS = ('/var/lib/authentic2/locale',) + LOCALE_PATHS
16 16

  
17
-