youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 9a4f12be98a0d59de9b5da65d2cc24b04fe26929
parent 7ad4258add964b2604ada611d380b5594126d85c
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 28 Nov 2015 22:40:29 +0600

[bloomberg] Modernize

Diffstat:
Myoutube_dl/extractor/bloomberg.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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))