From 0f4c983bd4c1ddb25df44b46dbb48a5f44b36827 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Thu, 12 Apr 2018 14:54:08 +1200 Subject: [PATCH] settings.py: switch to django.template.context_processors This change was made softly in Django 1.8 but will become mandatory in future versions. Signed-off-by: Paul Eggleton --- settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.py b/settings.py index c70ac4d..328e3af 100644 --- a/settings.py +++ b/settings.py @@ -121,7 +121,7 @@ X_FRAME_OPTIONS = 'DENY' from django.conf.global_settings import TEMPLATE_CONTEXT_PROCESSORS as TCP TEMPLATE_CONTEXT_PROCESSORS = TCP + ( - 'django.core.context_processors.request', + 'django.template.context_processors.request', 'layerindex.context_processors.layerindex_context', )