diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-01-01 17:01:48 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-01-01 17:01:48 +0530 |
commit | 193fb150b76c4aaf41fb2c98b073e7e1f8a108f0 (patch) | |
tree | 5110e7089aa62869782cdf5d0f139ebfeee78a7e /yt_dlp/YoutubeDL.py | |
parent | 26fdfc3704a278acada27cc420d67c6d3f71423b (diff) | |
download | hypervideo-pre-193fb150b76c4aaf41fb2c98b073e7e1f8a108f0.tar.lz hypervideo-pre-193fb150b76c4aaf41fb2c98b073e7e1f8a108f0.tar.xz hypervideo-pre-193fb150b76c4aaf41fb2c98b073e7e1f8a108f0.zip |
Fix bug in 119e40ef64b25f66a39246e87ce6c143cd34276d
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 866d069b7..8ce71a2dc 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -3460,7 +3460,8 @@ class YoutubeDL: return infodict def run_all_pps(self, key, info, *, additional_pps=None): - self._forceprint(key, info) + if key != 'video': + self._forceprint(key, info) for pp in (additional_pps or []) + self._pps[key]: info = self.run_pp(pp, info) return info |