mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
Fix bug in 8326b00aab
This commit is contained in:
parent
551f93885e
commit
4d85fbbdbb
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ def wrapper(self, info):
|
||||||
else 'audio' if info['acodec'] != 'none'
|
else 'audio' if info['acodec'] != 'none'
|
||||||
else 'images')
|
else 'images')
|
||||||
if allowed[format_type]:
|
if allowed[format_type]:
|
||||||
func(self, info)
|
return func(self, info)
|
||||||
else:
|
else:
|
||||||
self.to_screen('Skipping %s' % format_type)
|
self.to_screen('Skipping %s' % format_type)
|
||||||
return [], info
|
return [], info
|
||||||
|
|
Loading…
Reference in a new issue