From 4c9079e025e5da8c2e0dff6fc5fe8f146bd0743b Mon Sep 17 00:00:00 2001 From: PCoder Date: Sat, 2 Feb 2019 21:47:23 +0100 Subject: [PATCH] Fix bug: the way we get the string env --- ungleich_no_ipv4_here/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ungleich_no_ipv4_here/settings.py b/ungleich_no_ipv4_here/settings.py index 61389d0..bc41db6 100644 --- a/ungleich_no_ipv4_here/settings.py +++ b/ungleich_no_ipv4_here/settings.py @@ -128,5 +128,5 @@ STATICFILES_DIRS = ( os.path.join(BASE_DIR, 'static'), ) -STATIC_ROOT = env('STATIC_ROOT', os.path.join(BASE_DIR, '/staticfiles/')) +STATIC_ROOT = env.str('STATIC_ROOT', os.path.join(BASE_DIR, '/staticfiles/'))