summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2011-03-13 19:11:55 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2011-03-13 19:11:55 (GMT)
commit41c1f2b1ca2d3f0507fb27e7b1308c9135a1b1e7 (patch)
treece87025890e0de0e1e3b7c441647016b8cd96c70
parentb1c06ac9b075be9c551b906d0f323bc2b9c35c00 (diff)
parent5a39ae336f3772d9770b0f62399e3b5d50ab3642 (diff)
Merge branch 'master' of github.com:nnrcschmdt/helsinki
-rw-r--r--settings.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/settings.py b/settings.py
index 6fba2cd..4b224da 100644
--- a/settings.py
+++ b/settings.py
@@ -1,3 +1,5 @@
+import os
+
# Django settings for helsinki project.
DEBUG = True
@@ -62,7 +64,9 @@ MIDDLEWARE_CLASSES = (
ROOT_URLCONF = 'helsinki.urls'
-TEMPLATE_DIRS = ('templates',)
+TEMPLATE_DIRS = (
+ os.path.join(os.path.dirname(__file__), "templates"),
+)
INSTALLED_APPS = (
'django.contrib.auth',