From 317170185c47fee6ac94bc3dadd83ea473d86782 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Thu, 22 Nov 2012 20:03:36 +0100 Subject: [PATCH] Typo in settings --- youmap/settings/base.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/youmap/settings/base.py b/youmap/settings/base.py index 89c4e6ec..d37cd8ff 100644 --- a/youmap/settings/base.py +++ b/youmap/settings/base.py @@ -88,6 +88,8 @@ STATIC_ROOT = os.path.join(VAR_ROOT, 'static') MEDIA_ROOT = os.path.join(VAR_ROOT, 'uploads') STATICFILES_DIRS = ( + # Fabric will collect leaflet and draw in this dir + os.path.join(PROJECT_DIR, 'remote_static'), os.path.join(PROJECT_DIR, 'static'), ) @@ -99,11 +101,6 @@ TEMPLATE_DIRS = ( os.path.join(PROJECT_DIR, 'templates'), ) -STATICFILES_DIRS = ( - # Fabric will collect leaflet and draw in this dir - os.path.join(PROJECT_DIR, 'remote_static'), -) - TEMPLATE_CONTEXT_PROCESSORS += ( )