Ver Fonte

[shared] Fix for python 3.2

Sergey M․ há 10 anos atrás
pai
commit
0459432d96
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      youtube_dl/extractor/tutv.py

+ 1 - 1
youtube_dl/extractor/tutv.py

@@ -26,7 +26,7 @@ class TutvIE(InfoExtractor):
 
 
         data_content = self._download_webpage(
         data_content = self._download_webpage(
             'http://tu.tv/flvurl.php?codVideo=%s' % internal_id, video_id, 'Downloading video info')
             'http://tu.tv/flvurl.php?codVideo=%s' % internal_id, video_id, 'Downloading video info')
-        video_url = base64.b64decode(compat_parse_qs(data_content)['kpt'][0]).decode('utf-8')
+        video_url = base64.b64decode(compat_parse_qs(data_content)['kpt'][0].encode('utf-8')).decode('utf-8')
 
 
         return {
         return {
             'id': internal_id,
             'id': internal_id,