From 48d3aec35315fe5a77dd46dbfb3d70c3340fda0b Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 22 Apr 2021 14:10:48 +0200 Subject: missing import --- talermerchantdemos/survey/survey.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'talermerchantdemos/survey') diff --git a/talermerchantdemos/survey/survey.py b/talermerchantdemos/survey/survey.py index d583114..b5ea9c8 100644 --- 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")) -- cgit v1.2.3