From bf77a879bb9eba5eb8bd864ac659c0f95caafec6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 7 Dec 2018 08:21:52 +0100 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(-) diff --git a/debian-wheezy/debian_config.py b/debian-wheezy/debian_config.py index 88ce2769..be1f5dd6 100644 --- a/debian-wheezy/debian_config.py +++ b/debian-wheezy/debian_config.py @@ -10,7 +10,7 @@ MIDDLEWARE_CLASSES = ('authentic2.middleware.XForwardedForMiddleware',) + MIDDLE DEBUG = False STATIC_ROOT = '/var/lib/authentic2/collectstatic/' -STATICFILES_DIRS = ('/var/lib/authentic2/static',) + STATICFILES_DIRS +STATICFILES_DIRS = ('/var/lib/authentic2/static',) TEMPLATE_DIRS = ('/var/lib/authentic2/templates',) + TEMPLATE_DIRS LOCALE_PATHS = ('/var/lib/authentic2/locale',) + LOCALE_PATHS diff --git a/debian/debian_config.py b/debian/debian_config.py index ae98c29c..7f9ab4ca 100644 --- a/debian/debian_config.py +++ b/debian/debian_config.py @@ -10,7 +10,7 @@ MIDDLEWARE_CLASSES = ('authentic2.middleware.XForwardedForMiddleware',) + MIDDLE DEBUG = False STATIC_ROOT = '/var/lib/authentic2/collectstatic/' -STATICFILES_DIRS = ('/var/lib/authentic2/static',) + STATICFILES_DIRS +STATICFILES_DIRS = ('/var/lib/authentic2/static',) TEMPLATES[0]['DIRS'] = ['/var/lib/authentic2/templates'] + TEMPLATES[0]['DIRS'] LOCALE_PATHS = ('/var/lib/authentic2/locale',) + LOCALE_PATHS -- 2.20.0.rc2