From 3bc391b27588f27840f06a64272c81ea935e5c23 Mon Sep 17 00:00:00 2001 From: Florian N Date: Tue, 4 Feb 2014 23:42:19 -0500 Subject: [PATCH] update settings --- pydash/settings.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pydash/settings.py b/pydash/settings.py index 263e55c..497387c 100644 --- a/pydash/settings.py +++ b/pydash/settings.py @@ -90,13 +90,12 @@ TEMPLATE_LOADERS = ( # 'django.template.loaders.eggs.Loader', ) -TEMPLATE_DIRS = (os.path.join(os.path.dirname(__file__), '..', 'templates'),) +TEMPLATE_DIRS = os.path.join(BASE_DIR, 'templates') # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.6/howto/static-files/ -STATIC_ROOT = os.path.join(os.path.dirname(__file__), '..', 'static') -#STATIC_ROOT = os.path.join(BASE_DIR, 'static') +STATIC_ROOT = os.path.join(BASE_DIR, 'static') STATIC_URL = '/static/'