1
1
mirror of https://github.com/ytdl-org/youtube-dl synced 2024-07-10 23:24:20 +02:00

[wistia] Use centralized sorting

This commit is contained in:
Philipp Hagemeister 2013-12-25 15:20:14 +01:00
parent 7217e148fb
commit 539179f45b

View File

@ -45,7 +45,8 @@ class WistiaIE(InfoExtractor):
'filesize': a['size'],
'ext': a['ext'],
})
formats.sort(key=lambda a: a['filesize'])
self._sort_formats(formats)
return {
'id': video_id,