commit: 9a4aec8b7ea2c0863bc03ba8f3d3e69a61e77c80
parent 54fb1996812fa09f0f81ac28f42647e7706212b2
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date: Sun, 29 May 2016 19:25:25 +0800
[utils] Use bytes-like objects as header values on Python 2
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
@@ -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