commit 854245873f3a98a2a68f7f5d6baf30cab08e2f0f
parent 7e6c074ac076a82f8c487682cf937c509081c132
Author: Christian Grothoff <christian@grothoff.org>
Date: Wed, 7 Sep 2022 16:00:29 +0200
pass uproc
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/talermerchantdemos/blog/blog.py b/talermerchantdemos/blog/blog.py
@@ -112,7 +112,7 @@ LOGGER.info(
# Add context processor that will make additional variables
# and functions available in the template.
-app.context_processor(make_utility_processor("blog"), url_for('index'))
+app.context_processor(make_utility_processor("blog", url_for('index')))
##
diff --git a/talermerchantdemos/landing/landing.py b/talermerchantdemos/landing/landing.py
@@ -80,7 +80,7 @@ LOGGER.info(
# Add context processor that will make additional variables
# and functions available in the template.
-app.context_processor(make_utility_processor("landing"), url_for ('index'))
+app.context_processor(make_utility_processor("landing", url_for ('index')))
##
# Exception handler to capture all the unmanaged errors.
diff --git a/talermerchantdemos/survey/survey.py b/talermerchantdemos/survey/survey.py
@@ -86,7 +86,7 @@ app.add_template_global(self_localized)
# Add context processor that will make additional variables
# and functions available in the template.
-app.context_processor(make_utility_processor("survey"), url_for('index'))
+app.context_processor(make_utility_processor("survey", url_for('index')))
##