1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-01-25 07:32:50 +08:00

Give the URL of failed m3u8 downloads

This commit is contained in:
John Hawkinson 2016-10-27 18:34:05 -04:00
parent c725333d41
commit cb1f984799

View File

@ -1188,7 +1188,7 @@ class InfoExtractor(object):
res = self._download_webpage_handle( res = self._download_webpage_handle(
m3u8_url, video_id, m3u8_url, video_id,
note=note or 'Downloading m3u8 information', 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) fatal=fatal)
if res is False: if res is False:
return [] return []