debian: update request context processor dotted path (#19651)

This commit is contained in:
Frédéric Péters 2017-10-25 15:37:41 +02:00
parent 2589c13f46
commit ce5fecc664
1 changed files with 2 additions and 2 deletions

View File

@ -186,9 +186,9 @@ else:
TEMPLATES[0]['OPTIONS']['loaders'].insert(0,
'hobo.multitenant.template_loader.FilesystemLoader')
if not 'django.core.context_processors.request' in TEMPLATES[0]['OPTIONS']['context_processors']:
if not 'django.template.context_processors.request' in TEMPLATES[0]['OPTIONS']['context_processors']:
TEMPLATES[0]['OPTIONS']['context_processors'].insert(0,
'django.core.context_processors.request')
'django.template.context_processors.request')
TEMPLATES[0]['OPTIONS']['context_processors'] = [
'hobo.context_processors.template_vars',