summaryrefslogtreecommitdiff
path: root/pgcommitfest/settings.py
diff options
context:
space:
mode:
authorMagnus Hagander2017-08-28 10:59:30 +0000
committerMagnus Hagander2017-08-28 10:59:30 +0000
commit9e57d339264335e237945231b66d752550caeef3 (patch)
tree17207f7e582d8384ab062a07a5def82baad64802 /pgcommitfest/settings.py
parent03755674bb05ffaa06815a6b65c6d8d98463fe95 (diff)
Fix incorrect reference to global templates directory
This has probably been needed since an upgrade a long time ago but got stuck in a separate branch. Fixes the case where the admin interface could end up rendering a login form that would then not work, instead of providing the proper redirect.
Diffstat (limited to 'pgcommitfest/settings.py')
-rw-r--r--pgcommitfest/settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pgcommitfest/settings.py b/pgcommitfest/settings.py
index f3ceaa2..c4c0e37 100644
--- a/pgcommitfest/settings.py
+++ b/pgcommitfest/settings.py
@@ -108,7 +108,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.
- '../global_template/',
+ 'global_template/',
)