From e83eebb12f984c1614204e53c09dc5124b52b45c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergey=20M=E2=80=A4?= Date: Tue, 30 Dec 2014 22:46:23 +0600 Subject: [PATCH] [atresplayer] Fix python3 bug --- youtube_dl/extractor/atresplayer.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/youtube_dl/extractor/atresplayer.py b/youtube_dl/extractor/atresplayer.py index 7e987b2a0..72e83bfc2 100644 --- a/youtube_dl/extractor/atresplayer.py +++ b/youtube_dl/extractor/atresplayer.py @@ -56,7 +56,10 @@ class AtresPlayerIE(InfoExtractor): self._TIME_API_URL, video_id, 'Downloading timestamp', fatal=False), 1000, time.time()) timestamp_shifted = compat_str(timestamp + self._TIMESTAMP_SHIFT) - token = hmac.new(self._MAGIC.encode('utf-8'), episode_id + timestamp_shifted).hexdigest() + token = hmac.new( + self._MAGIC.encode('ascii'), + (episode_id + timestamp_shifted).encode('utf-8') + ).hexdigest() formats = [] for fmt in ['windows', 'android_tablet']: