Skip to content

Commit

Permalink
Try to work around a Werkzeug change?
Browse files Browse the repository at this point in the history
  • Loading branch information
sampsyo committed Feb 7, 2020
1 parent 91be732 commit d43d54e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beetsplug/web/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def to_python(self, value):
return ids

def to_url(self, value):
return ','.join(value)
return ','.join(str(v) for v in value)


class QueryConverter(PathConverter):
Expand Down

0 comments on commit d43d54e

Please sign in to comment.