projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
05751eb
)
Properly handle stream meap not being present
author
Philipp Hagemeister
<phihag@phihag.de>
Tue, 1 Oct 2013 12:44:09 +0000
(14:44 +0200)
committer
Philipp Hagemeister
<phihag@phihag.de>
Tue, 1 Oct 2013 12:44:09 +0000
(14:44 +0200)
youtube_dl/extractor/youtube.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/youtube.py
b/youtube_dl/extractor/youtube.py
index f3b9e3ab17a068ab72b71cf88b3dc0edda5d4dab..890667340852bb946112587dd9f6ee0ce0b9c099 100644
(file)
--- a/
youtube_dl/extractor/youtube.py
+++ b/
youtube_dl/extractor/youtube.py
@@
-1390,7
+1390,7
@@
class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
args = info['args']
# Easy way to know if the 's' value is in url_encoded_fmt_stream_map
# this signatures are encrypted
- if 'url_encoded_fmt_stream_map':
+ if 'url_encoded_fmt_stream_map'
not in args
:
raise ValueError(u'No stream_map present') # caught below
m_s = re.search(r'[&,]s=', args['url_encoded_fmt_stream_map'])
if m_s is not None: