From c79dc3b3204e8abf6c519db82c07472f44ad6f66 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 4 Apr 2013 22:23:51 +0100 Subject: [PATCH] Fix Static path for dev after settings layout change. --- app/vapemap/conf/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/vapemap/conf/base.py b/app/vapemap/conf/base.py index 026bdab..27cbe5a 100644 --- a/app/vapemap/conf/base.py +++ b/app/vapemap/conf/base.py @@ -38,8 +38,8 @@ STATIC_ROOT = os.path.join(os.path.dirname(__file__), '..', '..', '..', 'static' STATIC_URL = '/static/' STATICFILES_DIRS = [ - os.path.join(os.path.dirname(__file__), 'static'), - ] + os.path.join(os.path.dirname(__file__), '..', 'static'), +] STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder',