diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-12-27 21:41:21 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-12-27 21:41:21 +0600 |
commit | e73277c7e811a93a318a7707f82636c8093942b2 (patch) | |
tree | 5a3f2ffcf34cc08cacdbd58d3b3086e4e500ac84 /youtube_dl/extractor/abc7news.py | |
parent | 2db772b9eadb7ef148ff5fd2c9b061d61b07d8d9 (diff) |
[abc7news] Remove redundant formats sorting
Diffstat (limited to 'youtube_dl/extractor/abc7news.py')
-rw-r--r-- | youtube_dl/extractor/abc7news.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube_dl/extractor/abc7news.py b/youtube_dl/extractor/abc7news.py index c04949c21..122dc9099 100644 --- a/youtube_dl/extractor/abc7news.py +++ b/youtube_dl/extractor/abc7news.py @@ -44,7 +44,6 @@ class Abc7NewsIE(InfoExtractor): 'contentURL', webpage, 'm3u8 url', fatal=True) formats = self._extract_m3u8_formats(m3u8, display_id, 'mp4') - self._sort_formats(formats) title = self._og_search_title(webpage).strip() description = self._og_search_description(webpage).strip() |