Typo in settings

This commit is contained in:
Yohan Boniface 2012-11-22 20:03:36 +01:00
parent 6f81cacd64
commit 317170185c

View file

@ -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 += (
)