Skip to content

Commit

Permalink
Merge pull request #1759 from UlrichB22/strict_slashes
Browse files Browse the repository at this point in the history
app.py: set url_map.strict_slashes to False
  • Loading branch information
RogerHaase authored Sep 12, 2024
2 parents d66832b + bcbdd08 commit 60b8a72
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/moin/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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", "")
Expand Down

0 comments on commit 60b8a72

Please sign in to comment.