From cb1f98479976d70ef9e3016139b1c871ada2c5b1 Mon Sep 17 00:00:00 2001 From: John Hawkinson Date: Thu, 27 Oct 2016 18:34:05 -0400 Subject: [PATCH] Give the URL of failed m3u8 downloads --- youtube_dl/extractor/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 415dc84c8..61a8bf916 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -1188,7 +1188,7 @@ class InfoExtractor(object): res = self._download_webpage_handle( m3u8_url, video_id, note=note or 'Downloading m3u8 information', - errnote=errnote or 'Failed to download m3u8 information', + errnote=errnote or 'Failed to download m3u8 information: %s' % m3u8_url, fatal=fatal) if res is False: return []