From f036a6328e716835c4d3a0d4e0e28fc76184d9c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= Date: Mon, 28 Jul 2014 15:42:19 +0200 Subject: [PATCH] [extractor/common] _extract_f4m_formats: Use more specific messages when downloading the manifest --- youtube_dl/extractor/common.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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'):