aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-10-01 14:44:09 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-10-01 14:44:09 +0200
commit44d466559e9d1e762456a2dce4fc6cb0775f105e (patch)
tree15ef33e86b5059203a81beb791d4501f9b2b6214 /youtube_dl
parent05751eb0479b988a89d650befea239a32bddbfd9 (diff)
downloadyoutube-dl-44d466559e9d1e762456a2dce4fc6cb0775f105e.tar.xz
Properly handle stream meap not being present
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/youtube.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index f3b9e3ab1..890667340 100644
--- 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: