From a1223ea90d38919659f30e20069ac16b6fb019fd Mon Sep 17 00:00:00 2001 From: Olivier DOSSMANN Date: Wed, 23 Aug 2017 22:04:30 +0200 Subject: [PATCH] Correction de la configuration de STATIC_ROOT --- collection/collection/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collection/collection/settings.py b/collection/collection/settings.py index 58a7ab2..e47a413 100644 --- a/collection/collection/settings.py +++ b/collection/collection/settings.py @@ -121,5 +121,5 @@ USE_TZ = False STATIC_URL = '/static/' STATIC_ROOT = os.path.join(os.path.abspath(os.path.curdir), 'static') -if not os.getenv('STATIC_ROOT', None): +if os.getenv('STATIC_ROOT', None): STATIC_ROOT = os.path.abspath(os.getenv('STATIC_ROOT'))