From 77bf37df332d0be8509afe9fe2ffd8be220c44d7 Mon Sep 17 00:00:00 2001 From: Christopher Charbonneau Wells Date: Thu, 11 Oct 2018 19:28:51 -0700 Subject: [PATCH] Correct whitenoise root definition in base settings. --- babybuddy/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babybuddy/settings/base.py b/babybuddy/settings/base.py index f78366d6..c49e19c8 100644 --- a/babybuddy/settings/base.py +++ b/babybuddy/settings/base.py @@ -135,7 +135,7 @@ STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, 'static') -WHITENOISE_ROOT = os.path.join(BASE_DIR, 'static', 'root') +WHITENOISE_ROOT = os.path.join(BASE_DIR, 'static', 'babybuddy', 'root') # Media files (User uploaded content)