1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-20 14:36:52 +02:00

Fix the default values of format_id and format

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-07-14 17:31:52 +02:00
parent e028d0d1e3
commit 8016c92297

View File

@ -472,10 +472,10 @@ def process_video_result(self, info_dict, download=True):
else:
format_desc = u'%sp' % format['height']
else:
format_desc = compat_str(i)
format_desc = '???'
format['format'] = format_desc
if format.get('format_id') is None:
format['format_id'] = '???'
format['format_id'] = compat_str(i)
if self.params.get('listformats', None):
self.list_formats(info_dict)