From 8756e7f880de5240625aee2f46445535cd22dc86 Mon Sep 17 00:00:00 2001 From: FreneticScribbler Date: Tue, 23 Feb 2021 01:19:38 +0000 Subject: [PATCH] Oops --- PyRIGS/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PyRIGS/settings.py b/PyRIGS/settings.py index 3ce2723a..ba485a9e 100644 --- a/PyRIGS/settings.py +++ b/PyRIGS/settings.py @@ -230,9 +230,9 @@ DATETIME_INPUT_FORMATS = ('%Y-%m-%dT%H:%M', '%Y-%m-%dT%H:%M:%S') # Static files (CSS, JavaScript, Images) STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage' STATIC_URL = '/static/' -STATIC_ROOT = BASE_DIR / 'static/' +STATIC_ROOT = str(BASE_DIR / 'static/') STATICFILES_DIRS = [ - BASE_DIR / 'pipeline/built_assets', + str(BASE_DIR / 'pipeline/built_assets'), ] TEMPLATES = [