diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-28 22:40:29 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-28 22:40:29 +0600 |
commit | 9a4f12be98a0d59de9b5da65d2cc24b04fe26929 (patch) | |
tree | 3d2f5b06938e0241922bd17db2f8a5d8cf6741ed /youtube_dl | |
parent | 7ad4258add964b2604ada611d380b5594126d85c (diff) |
[bloomberg] Modernize
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/bloomberg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/bloomberg.py b/youtube_dl/extractor/bloomberg.py index 8b2f94211..b6197d3f1 100644 --- a/youtube_dl/extractor/bloomberg.py +++ b/youtube_dl/extractor/bloomberg.py @@ -35,7 +35,7 @@ class BloombergIE(InfoExtractor): 'http://www.bloomberg.com/api/embed?id=%s' % video_id, video_id) formats = [] for stream in embed_info['streams']: - if stream["muxing_format"] == "TS": + if stream['muxing_format'] == 'TS': formats.extend(self._extract_m3u8_formats(stream['url'], video_id)) else: formats.extend(self._extract_f4m_formats(stream['url'], video_id)) |