1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-29 20:51:10 +02:00

[senate] Simplify

There isn't any problem if the 'formats' field only has one element
This commit is contained in:
Jaime Marquínez Ferrándiz 2015-04-21 15:04:55 +02:00
parent 757cda0a96
commit 5c1e6f69c4

View File

@ -133,15 +133,9 @@ def _real_extract(self, url):
self._sort_formats(formats)
info_dict = {
return {
'id': video_id,
'title': title,
'formats': formats,
'thumbnail': thumbnail,
}
if len(formats) >= 1:
info_dict.update({'formats': formats})
else:
info_dict.update(formats[0])
return info_dict