1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-11-26 12:11:52 +00:00

make flake happy

This commit is contained in:
Robert Jacobson 2020-03-21 23:25:46 -04:00
parent 15f29e48c9
commit 5c11300fbf

View file

@ -50,8 +50,8 @@ class DigitalConcertHallIE(InfoExtractor):
self.debug_out("key: " + key) self.debug_out("key: " + key)
m3u8_url = playlist_dict.get(key)[0].get('url') m3u8_url = playlist_dict.get(key)[0].get('url')
self.debug_out("key url: " + m3u8_url) self.debug_out("key url: " + m3u8_url)
formats = self._extract_m3u8_formats(m3u8_url, key, 'mp4', formats = self._extract_m3u8_formats(
'm3u8_native', m3u8_id='hls', fatal=False) m3u8_url, key, 'mp4', 'm3u8_native', m3u8_id='hls', fatal=False)
self.debug_out(formats) self.debug_out(formats)
# the div with id=key contains the video title # the div with id=key contains the video title
vid_info_div = clean_html(get_element_by_id(key, webpage)) vid_info_div = clean_html(get_element_by_id(key, webpage))