make template_dirs in settings a tuple to play nice with django 1.7
This commit is contained in:
parent
f9f9309fe9
commit
06c1b268b4
|
@ -61,7 +61,7 @@ MIDDLEWARE_CLASSES = (
|
||||||
ROOT_URLCONF = 'binder.urls'
|
ROOT_URLCONF = 'binder.urls'
|
||||||
|
|
||||||
TEMPLATE_DIRS = (
|
TEMPLATE_DIRS = (
|
||||||
os.path.join(SITE_ROOT, "templates")
|
os.path.join(SITE_ROOT, "templates"),
|
||||||
)
|
)
|
||||||
|
|
||||||
INSTALLED_APPS = (
|
INSTALLED_APPS = (
|
||||||
|
|
Loading…
Reference in New Issue