summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-07-28 15:42:19 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-07-28 15:42:19 +0200
commitf036a6328e716835c4d3a0d4e0e28fc76184d9c3 (patch)
tree225cddabef88287ce22ef5edb583a376f6f90981
parent31bb8d3f5142f68c9da389caf9fa2356464cc35e (diff)
downloadyoutube-dl-f036a6328e716835c4d3a0d4e0e28fc76184d9c3.tar.gz
youtube-dl-f036a6328e716835c4d3a0d4e0e28fc76184d9c3.tar.xz
youtube-dl-f036a6328e716835c4d3a0d4e0e28fc76184d9c3.zip
[extractor/common] _extract_f4m_formats: Use more specific messages when downloading the manifest
-rw-r--r--youtube_dl/extractor/common.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index 59030e127..342bfb8b3 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -592,7 +592,9 @@ class InfoExtractor(object):
         time.sleep(timeout)
 
     def _extract_f4m_formats(self, manifest_url, video_id):
-        manifest = self._download_xml(manifest_url, video_id)
+        manifest = self._download_xml(
+            manifest_url, video_id, 'Downloading f4m manifest',
+            'Unable to download f4m manifest')
 
         formats = []
         for media_el in manifest.findall('{http://ns.adobe.com/f4m/1.0}media'):