summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-11-01 00:01:34 +0600
committerSergey M․ <dstftw@gmail.com>2015-11-01 00:01:34 +0600
commitdbd82a1d4fff1655920e111cc25a7fd526d7bf9a (patch)
tree6a0da3e0ea098a397bc27fec6d2a8a2ad4496e1c
parent76f0c50d3d3e2eb5903b61da08829699e902916d (diff)
downloadyoutube-dl-dbd82a1d4fff1655920e111cc25a7fd526d7bf9a.tar.gz
youtube-dl-dbd82a1d4fff1655920e111cc25a7fd526d7bf9a.tar.xz
youtube-dl-dbd82a1d4fff1655920e111cc25a7fd526d7bf9a.zip
[extractor/common] Fix m3u8 extraction on failure
-rw-r--r--youtube_dl/extractor/common.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index 59c3fa8dc..1f09fbb47 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -943,13 +943,14 @@ class InfoExtractor(object):
             if re.match(r'^https?://', u)
             else compat_urlparse.urljoin(m3u8_url, u))
 
-        m3u8_doc, urlh = self._download_webpage_handle(
+        res = self._download_webpage_handle(
             m3u8_url, video_id,
             note=note or 'Downloading m3u8 information',
             errnote=errnote or 'Failed to download m3u8 information',
             fatal=fatal)
-        if m3u8_doc is False:
-            return m3u8_doc
+        if res is False:
+            return res
+        m3u8_doc, urlh = res
         m3u8_url = urlh.geturl()
         last_info = None
         last_media = None