Try to work around a Werkzeug change?

This commit is contained in:
Adrian Sampson 2020-02-06 22:22:54 -05:00
parent 91be732bf4
commit d43d54e21c

View file

@ -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):