From e4d6d810ae708e25357d3510190c76018f413e5d Mon Sep 17 00:00:00 2001 From: Aaron Gutierrez Date: Tue, 7 Feb 2017 22:43:25 -0500 Subject: [PATCH] try and fix staticfiles --- fincom/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fincom/settings.py b/fincom/settings.py index 7b20217..85eaf08 100644 --- a/fincom/settings.py +++ b/fincom/settings.py @@ -163,7 +163,7 @@ USE_TZ = True # https://docs.djangoproject.com/en/1.10/howto/static-files/ STATIC_URL = '/static/' -STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') +STATIC_ROOT = 'staticfiles' STATICFILES_DIRS = ( os.path.join(BASE_DIR, 'static'), )