diff options
Diffstat (limited to 'youtube_dlc/extractor/pinterest.py')
-rw-r--r-- | youtube_dlc/extractor/pinterest.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dlc/extractor/pinterest.py b/youtube_dlc/extractor/pinterest.py index b249c9eda..15c11a755 100644 --- a/youtube_dlc/extractor/pinterest.py +++ b/youtube_dlc/extractor/pinterest.py @@ -54,8 +54,7 @@ class PinterestBaseIE(InfoExtractor): 'height': int_or_none(format_dict.get('height')), 'duration': duration, }) - self._sort_formats( - formats, field_preference=('height', 'width', 'tbr', 'format_id')) + self._sort_formats(formats) description = data.get('description') or data.get('description_html') or data.get('seo_description') timestamp = unified_timestamp(data.get('created_at')) |