diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-29 02:12:07 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-29 02:12:07 +0530 |
commit | c77495e3a4161ee652e5131bb0de7bc8c819f9d9 (patch) | |
tree | eb13fb36eac8c15818fced2bbc1939a6ba5c59c1 /test/test_YoutubeDL.py | |
parent | 65af1839c67bf4136ad635b8619bf8d4bdef7f81 (diff) | |
download | hypervideo-pre-c77495e3a4161ee652e5131bb0de7bc8c819f9d9.tar.lz hypervideo-pre-c77495e3a4161ee652e5131bb0de7bc8c819f9d9.tar.xz hypervideo-pre-c77495e3a4161ee652e5131bb0de7bc8c819f9d9.zip |
[cleanup] `_match_entry`
Diffstat (limited to 'test/test_YoutubeDL.py')
-rw-r--r-- | test/test_YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py index f34d55d82..1696ccd30 100644 --- a/test/test_YoutubeDL.py +++ b/test/test_YoutubeDL.py @@ -756,7 +756,7 @@ class TestYoutubeDL(unittest.TestCase): def process_info(self, info_dict): super(YDL, self).process_info(info_dict) - def _match_entry(self, info_dict, incomplete): + 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) |