mirror of
https://github.com/beetbox/beets.git
synced 2025-12-23 17:13:30 +01:00
Try to work around a Werkzeug change?
This commit is contained in:
parent
91be732bf4
commit
d43d54e21c
1 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue