]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/keezmovies.py
[ie/box] Fix formats extraction (#8649)
[yt-dlp.git] / yt_dlp / extractor / keezmovies.py
index 1c2d5c01ca1dab4d07f601f9c346d1cf713a4ed6..b50da420cbe15d4f7acc90f5c0a3f3eb163c5107 100644 (file)
@@ -5,7 +5,6 @@
 from ..compat import compat_urllib_parse_unquote
 from ..utils import (
     determine_ext,
-    ExtractorError,
     format_field,
     int_or_none,
     str_to_int,
@@ -103,12 +102,6 @@ def extract_format(format_url, height=None):
                 self.raise_no_formats(
                     'Video %s is no longer available' % video_id, expected=True)
 
-        try:
-            self._sort_formats(formats)
-        except ExtractorError:
-            if fatal:
-                raise
-
         if not title:
             title = self._html_search_regex(
                 r'<h1[^>]*>([^<]+)', webpage, 'title')