debian: fix handling of TEMPLATE_CONTEXT_PROCESSORS being a tuple (#14711)

This commit is contained in:
Frédéric Péters 2017-01-20 14:07:56 +01:00
parent 884fdd0782
commit 5e938dda5d
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ execfile('/usr/lib/hobo/debian_config_common.py')
INSTALLED_APPS = ('hobo.agent.combo', ) + INSTALLED_APPS
# add statics_hash context processor
TEMPLATE_CONTEXT_PROCESSORS.append('hobo.context_processors.statics_hash')
TEMPLATE_CONTEXT_PROCESSORS = tuple(TEMPLATE_CONTEXT_PROCESSORS) + ('hobo.context_processors.statics_hash',)
#
# local settings