aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/postprocessor/common.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-06-13 14:36:13 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-06-13 14:36:13 +0530
commit4d85fbbdbba79aed7b73ea54b1bdc20d078961d4 (patch)
treeebeee69d229bf107ea8325c5315bbdaf2823ec65 /yt_dlp/postprocessor/common.py
parent551f93885e25c208c581702494d758e58b608992 (diff)
downloadhypervideo-pre-4d85fbbdbba79aed7b73ea54b1bdc20d078961d4.tar.lz
hypervideo-pre-4d85fbbdbba79aed7b73ea54b1bdc20d078961d4.tar.xz
hypervideo-pre-4d85fbbdbba79aed7b73ea54b1bdc20d078961d4.zip
Fix bug in 8326b00aabc332cad3edec246fe5353bea069cb0
Diffstat (limited to 'yt_dlp/postprocessor/common.py')
-rw-r--r--yt_dlp/postprocessor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/postprocessor/common.py b/yt_dlp/postprocessor/common.py
index 9bd025ff6..7fd14ea1e 100644
--- a/yt_dlp/postprocessor/common.py
+++ b/yt_dlp/postprocessor/common.py
@@ -80,7 +80,7 @@ class PostProcessor(object):
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