From 5142604f45079bd85e8bb9ef681ba601d124a2f6 Mon Sep 17 00:00:00 2001 From: Brandon King Date: Fri, 29 Aug 2008 17:07:15 +0000 Subject: [PATCH] Template loading fix. * Relative path was slightly off. --- htswfrontend/htswfrontend/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htswfrontend/htswfrontend/settings.py b/htswfrontend/htswfrontend/settings.py index 2e6cc4b..cd51743 100644 --- a/htswfrontend/htswfrontend/settings.py +++ b/htswfrontend/htswfrontend/settings.py @@ -75,7 +75,7 @@ TEMPLATE_DIRS = ( # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. - os.path.abspath("../../templates"), + os.path.abspath("../templates"), ) INSTALLED_APPS = ( -- 2.30.2