aboutsummaryrefslogtreecommitdiffstats
path: root/community/beets/0001-Try-to-work-around-a-Werkzeug-change.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/beets/0001-Try-to-work-around-a-Werkzeug-change.patch')
-rw-r--r--community/beets/0001-Try-to-work-around-a-Werkzeug-change.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/community/beets/0001-Try-to-work-around-a-Werkzeug-change.patch b/community/beets/0001-Try-to-work-around-a-Werkzeug-change.patch
deleted file mode 100644
index d2b7beca71d..00000000000
--- a/community/beets/0001-Try-to-work-around-a-Werkzeug-change.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From d43d54e21cde97f57f19486925ab56b419254cc8 Mon Sep 17 00:00:00 2001
-From: Adrian Sampson <adrian@radbox.org>
-Date: Thu, 6 Feb 2020 22:22:54 -0500
-Subject: [PATCH] Try to work around a Werkzeug change?
-
----
- beetsplug/web/__init__.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/beetsplug/web/__init__.py b/beetsplug/web/__init__.py
-index f53fb3a9..21ff5d94 100644
---- a/beetsplug/web/__init__.py
-+++ b/beetsplug/web/__init__.py
-@@ -169,7 +169,7 @@ class IdListConverter(BaseConverter):
- return ids
-
- def to_url(self, value):
-- return ','.join(value)
-+ return ','.join(str(v) for v in value)
-
-
- class QueryConverter(PathConverter):