From bcbdd0880ed788270c9f073cd2aa3cfa76911bc2 Mon Sep 17 00:00:00 2001 From: UlrichB22 <97119703+UlrichB22@users.noreply.github.com> Date: Thu, 12 Sep 2024 15:33:58 +0200 Subject: [PATCH] app.py: set url_map.strict_slashes to False --- src/moin/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/moin/app.py b/src/moin/app.py index 5ca0f420e..01d4c50bc 100644 --- a/src/moin/app.py +++ b/src/moin/app.py @@ -75,6 +75,7 @@ def create_app_ext(flask_config_file=None, flask_config_dict=None, moin_config_c clock.start("create_app total") logging.debug("running create_app_ext") app = Flask("moin") + app.url_map.strict_slashes = False # see issue 1737 c = get_current_context(silent=True) info_name = getattr(c, "info_name", "")