logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 7d1b527ff9f942d4a6b3bfaf0a04a9f42ac317fe
parent f943c7b6227fd9b17b920dff664e014cbd62f2b2
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri,  4 Apr 2014 23:06:27 +0200

[motorsport] Fix on Python 3

Diffstat:

Myoutube_dl/extractor/motorsport.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/motorsport.py b/youtube_dl/extractor/motorsport.py @@ -44,7 +44,7 @@ class MotorsportIE(InfoExtractor): e = compat_str(int(time.time()) + 24 * 60 * 60) base_video_url = params['location'] + '?e=' + e s = 'h3hg713fh32' - h = hashlib.md5(s + base_video_url).hexdigest() + h = hashlib.md5((s + base_video_url).encode('utf-8')).hexdigest() video_url = base_video_url + '&h=' + h uploader = self._html_search_regex(