From 5c11300fbf4252d9cefb9caaebec7bef679e4534 Mon Sep 17 00:00:00 2001 From: Robert Jacobson Date: Sat, 21 Mar 2020 23:25:46 -0400 Subject: [PATCH] make flake happy --- youtube_dl/extractor/digitalconcerthall.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/digitalconcerthall.py b/youtube_dl/extractor/digitalconcerthall.py index aa5414f9a..f38d12d22 100644 --- a/youtube_dl/extractor/digitalconcerthall.py +++ b/youtube_dl/extractor/digitalconcerthall.py @@ -50,8 +50,8 @@ class DigitalConcertHallIE(InfoExtractor): self.debug_out("key: " + key) m3u8_url = playlist_dict.get(key)[0].get('url') self.debug_out("key url: " + m3u8_url) - formats = self._extract_m3u8_formats(m3u8_url, key, 'mp4', - 'm3u8_native', m3u8_id='hls', fatal=False) + formats = self._extract_m3u8_formats( + m3u8_url, key, 'mp4', 'm3u8_native', m3u8_id='hls', fatal=False) self.debug_out(formats) # the div with id=key contains the video title vid_info_div = clean_html(get_element_by_id(key, webpage))