make template_dirs in settings a tuple to play nice with django 1.7

This commit is contained in:
Jeffrey Forman 2014-10-06 21:58:09 -04:00
parent f9f9309fe9
commit 06c1b268b4
1 changed files with 1 additions and 1 deletions

View File

@ -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 = (