Fix TEMPLATE_DIRS in settings.py to be a correct tuple

Django >1.5 complains about it to be deprecated
This commit is contained in:
Gergely Polonkai 2014-06-14 13:00:00 +00:00
parent b786a44439
commit 0073c1521c
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
SITE_ROOT + os.path.sep + "templates"
SITE_ROOT + os.path.sep + "templates",
)
INSTALLED_APPS = (