From 65b771a3623eda5e18db1d0526004650ca964af7 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Fri, 24 Jun 2016 11:17:17 +0200 Subject: [PATCH] Make TEMPLATES.DIRS a list to make overridable more easily --- umap/settings/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/umap/settings/base.py b/umap/settings/base.py index c0e8c644..aae04fa3 100644 --- a/umap/settings/base.py +++ b/umap/settings/base.py @@ -103,9 +103,9 @@ TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'APP_DIRS': True, - 'DIRS': ( + 'DIRS': [ os.path.join(PROJECT_DIR, 'templates'), - ), + ], 'OPTIONS': { 'context_processors': ( "django.contrib.auth.context_processors.auth",