projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
43150d7
)
[shared] Fix for python 3.2
author
Sergey M․
<dstftw@gmail.com>
Thu, 21 May 2015 18:10:53 +0000
(
00:10
+0600)
committer
Sergey M․
<dstftw@gmail.com>
Thu, 21 May 2015 18:10:53 +0000
(
00:10
+0600)
youtube_dl/extractor/tutv.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/tutv.py
b/youtube_dl/extractor/tutv.py
index 4de0aac523313eced334aab38a9a20c7bf08dfc7..fad720b681e125ac495b26ba3870dbd65340e3ce 100644
(file)
--- a/
youtube_dl/extractor/tutv.py
+++ b/
youtube_dl/extractor/tutv.py
@@
-26,7
+26,7
@@
class TutvIE(InfoExtractor):
data_content = self._download_webpage(
'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 {
'id': internal_id,