summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-10-17 02:19:19 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-10-17 02:19:19 +0200
commita733eb6c534625b51e42763d8c4b8f29e176e512 (patch)
tree0ecbbf2885a76eba9c7e1d5fd67b2c8ad507299e
parent591454798d330adfcf8e22ef66fed7bbdf9f628b (diff)
downloadyoutube-dl-a733eb6c534625b51e42763d8c4b8f29e176e512.tar.gz
youtube-dl-a733eb6c534625b51e42763d8c4b8f29e176e512.tar.xz
youtube-dl-a733eb6c534625b51e42763d8c4b8f29e176e512.zip
[youtube] Do not crash if caption info is missing altogether (Fixes #1610)
-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 4347651d7..fb7c42830 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -1150,7 +1150,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
             list_page = self._download_webpage(list_url, video_id)
             caption_list = xml.etree.ElementTree.fromstring(list_page.encode('utf-8'))
             original_lang_node = caption_list.find('track')
-            if original_lang_node.attrib.get('kind') != 'asr' :
+            if not original_lang_node or original_lang_node.attrib.get('kind') != 'asr' :
                 self._downloader.report_warning(u'Video doesn\'t have automatic captions')
                 return {}
             original_lang = original_lang_node.attrib['lang_code']