aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/YoutubeDL.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-01-11 00:31:19 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-01-11 00:31:19 +0530
commitdc5f409cdcaa8bda1a9861f6f48b5a7f76c77019 (patch)
tree943f76802c03ef4e3c9f95fd9032de872289c79a /yt_dlp/YoutubeDL.py
parent99d6f9461dcfda1900019047f8ad53cac3484709 (diff)
downloadhypervideo-pre-dc5f409cdcaa8bda1a9861f6f48b5a7f76c77019.tar.lz
hypervideo-pre-dc5f409cdcaa8bda1a9861f6f48b5a7f76c77019.tar.xz
hypervideo-pre-dc5f409cdcaa8bda1a9861f6f48b5a7f76c77019.zip
Fix typo in ed5835b4513aed59ff29f4bdb7e07456cd041ee0
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r--yt_dlp/YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py
index e29035838..e6fea3941 100644
--- a/yt_dlp/YoutubeDL.py
+++ b/yt_dlp/YoutubeDL.py
@@ -3280,7 +3280,7 @@ class YoutubeDL(object):
for tmpl in self.params['forceprint'].get(key, []):
self._forceprint(tmpl, info)
for pp in (additional_pps or []) + self._pps[key]:
- info = self.run_pp(info)
+ info = self.run_pp(pp, info)
return info
def pre_process(self, ie_info, key='pre_process', files_to_move=None):