mirror of
https://github.com/beetbox/beets.git
synced 2025-12-29 20:12:33 +01:00
remove bytes() on maxwidth in artresizer
This would definitely break on py3.
This commit is contained in:
parent
d41949d326
commit
d32aa00154
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ def resize_url(url, maxwidth):
|
|||
"""
|
||||
return '{0}?{1}'.format(PROXY_URL, urlencode({
|
||||
'url': url.replace('http://', ''),
|
||||
'w': bytes(maxwidth),
|
||||
'w': maxwidth,
|
||||
}))
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue