From 06c1b268b4d62c104482a1ef06aa3096a30b64f6 Mon Sep 17 00:00:00 2001 From: Jeffrey Forman Date: Mon, 6 Oct 2014 21:58:09 -0400 Subject: [PATCH] make template_dirs in settings a tuple to play nice with django 1.7 --- binder/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binder/settings.py b/binder/settings.py index 1123920..4a6a2a9 100644 --- a/binder/settings.py +++ b/binder/settings.py @@ -61,7 +61,7 @@ MIDDLEWARE_CLASSES = ( ROOT_URLCONF = 'binder.urls' TEMPLATE_DIRS = ( - os.path.join(SITE_ROOT, "templates") + os.path.join(SITE_ROOT, "templates"), ) INSTALLED_APPS = (