From 4ae1e8278c31fce4538ae978ad1d46b7f980d3b1 Mon Sep 17 00:00:00 2001 From: wisp3rwind <17089248+wisp3rwind@users.noreply.github.com> Date: Sat, 29 Apr 2023 11:37:46 +0200 Subject: [PATCH] web: fix for breaking werkzeug change cf. https://github.com/pallets/werkzeug/issues/2506 didn't check when part_isolating was introduced, but presumably, it should be harmless to set this attribute for old werkzeug versions that didn't have it yet --- beetsplug/web/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/beetsplug/web/__init__.py b/beetsplug/web/__init__.py index 7b04f3714..a5f26d850 100644 --- a/beetsplug/web/__init__.py +++ b/beetsplug/web/__init__.py @@ -265,6 +265,7 @@ class QueryConverter(PathConverter): class EverythingConverter(PathConverter): + part_isolating = False regex = '.*?'