]> jfr.im git - yt-dlp.git/commitdiff
Fix bug in 8326b00aabc332cad3edec246fe5353bea069cb0
authorpukkandan <redacted>
Sun, 13 Jun 2021 09:06:13 +0000 (14:36 +0530)
committerpukkandan <redacted>
Sun, 13 Jun 2021 09:06:13 +0000 (14:36 +0530)
yt_dlp/postprocessor/common.py

index 9bd025ff6ce5745005d1bb1c018ebdfc2d62b6f8..7fd14ea1e9aff5580da7ab47515eda2f8d58e99c 100644 (file)
@@ -80,7 +80,7 @@ def wrapper(self, info):
                     else 'audio' if info['acodec'] != 'none'
                     else 'images')
                 if allowed[format_type]:
-                    func(self, info)
+                    return func(self, info)
                 else:
                     self.to_screen('Skipping %s' % format_type)
                     return [], info