remove bytes() on maxwidth in artresizer

This would definitely break on py3.
This commit is contained in:
Johnny Robeson 2016-08-09 04:34:40 -04:00
parent d41949d326
commit d32aa00154

View file

@ -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,
}))