taler-merchant-demos

Python-based Frontends for the Demonstration Web site
Log | Files | Refs | Submodules | README | LICENSE

commit 48d3aec35315fe5a77dd46dbfb3d70c3340fda0b
parent 4b4dcb6a0d359ddbed41a6de14b1b33d3518824f
Author: Florian Dold <florian@dold.me>
Date:   Thu, 22 Apr 2021 14:10:48 +0200

missing import

Diffstat:
Mtalermerchantdemos/survey/survey.py | 13+------------
1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/talermerchantdemos/survey/survey.py b/talermerchantdemos/survey/survey.py @@ -36,6 +36,7 @@ from ..httpcommon import ( self_localized, BackendException, make_utility_processor, + get_locale, ) import sys @@ -81,18 +82,6 @@ LOGGER.info( app.add_template_global(self_localized) -@babel.localeselector -def get_locale(): - parts = request.path.split("/", 2) - if 2 >= len(parts): - # Totally unexpected path format, do not localize - return "en" - lang = parts[1] - if lang in translations: - return lang - return "en" - - # Add context processor that will make additional variables # and functions available in the template. app.context_processor(make_utility_processor("survey"))