From abac1b5bbb77229a59cbe4fe225a76d8d7876bf9 Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Wed, 19 May 2010 12:59:52 +0200 Subject: [PATCH] fix the template_dir and hgignore theme directories --- pyweb/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyweb/settings.py b/pyweb/settings.py index 19c3372..cb822bb 100644 --- a/pyweb/settings.py +++ b/pyweb/settings.py @@ -214,7 +214,7 @@ MIDDLEWARE_CLASSES = ( ROOT_URLCONF = 'pyweb.urls' if THEME: - TEMPLATE_DIRS = [ join( MUMBLE_DJANGO_ROOT, 'themes', THEME, 'templates' ) ] + TEMPLATE_DIRS = [ join( MUMBLE_DJANGO_ROOT, 'themes', THEME ) ] else: TEMPLATE_DIRS = []