From a7511b14b7e48186414c821d5381139df694a26a Mon Sep 17 00:00:00 2001 From: "Denis V. Dedkov" Date: Wed, 4 Nov 2015 17:51:43 +0500 Subject: [PATCH] TEMPLATE_DIRS must be tuple --- record/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/record/settings.py b/record/settings.py index 1ccad2c..57eb05e 100644 --- a/record/settings.py +++ b/record/settings.py @@ -99,7 +99,7 @@ STATIC_URL = '/static/' ADMIN_MEDIA_PREFIX = '/static/admin/' -TEMPLATE_DIRS = ('templates/') +TEMPLATE_DIRS = ('templates/',) TEMPLATE_CONTEXT_PROCESSORS += ('django.core.context_processors.request', 'django.core.context_processors.csrf',