blob: 9833d3f3f006bb660f5c54a661e4b84f72476f46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
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):
--
2.26.2
|