diff --git a/store/app.py b/store/app.py index f1b2a7c1..684d7717 100644 --- a/store/app.py +++ b/store/app.py @@ -83,6 +83,7 @@ def localize(d): else: return d["en"] + @app.context_processor def utils(): return { @@ -90,6 +91,7 @@ def utils(): "locale": get_locale(), } + ###############################################################################