1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-26 19:25:45 +02:00
This commit is contained in:
pukkandan 2022-01-11 00:31:19 +05:30
parent 99d6f9461d
commit dc5f409cdc
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

View File

@ -3280,7 +3280,7 @@ def run_all_pps(self, key, info, *, additional_pps=None):
for tmpl in self.params['forceprint'].get(key, []): for tmpl in self.params['forceprint'].get(key, []):
self._forceprint(tmpl, info) self._forceprint(tmpl, info)
for pp in (additional_pps or []) + self._pps[key]: for pp in (additional_pps or []) + self._pps[key]:
info = self.run_pp(info) info = self.run_pp(pp, info)
return info return info
def pre_process(self, ie_info, key='pre_process', files_to_move=None): def pre_process(self, ie_info, key='pre_process', files_to_move=None):