[utils] Use bytes-like objects as header values on Python 2

This commit is contained in:
Yen Chi Hsuan 2016-05-29 19:25:25 +08:00
parent 54fb199681
commit 9a4aec8b7e
1 changed files with 2 additions and 0 deletions

View File

@ -866,6 +866,8 @@ class YoutubeDLHandler(compat_urllib_request.HTTPHandler):
location_escaped = escape_url(location)
if location != location_escaped:
del resp.headers['Location']
if sys.version_info < (3, 0):
location_escaped = location_escaped.encode('utf-8')
resp.headers['Location'] = location_escaped
return resp