Add key requested_downloads in the root info_dict

This commit is contained in:
pukkandan 2022-01-03 19:06:26 +05:30
parent 9c906919ae
commit f46e2f9d92
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
4 changed files with 35 additions and 15 deletions

View file

@ -30,6 +30,7 @@ class YDL(FakeYDL):
self.msgs = []
def process_info(self, info_dict):
info_dict = info_dict.copy()
info_dict.pop('__original_infodict', None)
self.downloaded_info_dicts.append(info_dict)
@ -908,7 +909,7 @@ class TestYoutubeDL(unittest.TestCase):
def _match_entry(self, info_dict, incomplete=False):
res = super(FilterYDL, self)._match_entry(info_dict, incomplete)
if res is None:
self.downloaded_info_dicts.append(info_dict)
self.downloaded_info_dicts.append(info_dict.copy())
return res
first = {