diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-06-27 23:51:06 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-06-27 23:51:06 +0200 |
commit | 023fa8c44037d747c719b25428624db8e9636093 (patch) | |
tree | e9e65c78ebecd1f7b8356c4c685bebdd6bb65e79 /test | |
parent | 427023a1e6f2bb45a61b2bbfd56f845ee0c0ffee (diff) |
Add function add_default_info_extractors to YoutubeDL
It adds to the list the ies returned by ge_extractors
Diffstat (limited to 'test')
-rw-r--r-- | test/test_download.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_download.py b/test/test_download.py index db43e9962..786ebba88 100644 --- a/test/test_download.py +++ b/test/test_download.py @@ -14,7 +14,6 @@ import binascii sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) import youtube_dl.YoutubeDL -import youtube_dl.extractor from youtube_dl.utils import * PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "parameters.json") @@ -87,8 +86,7 @@ def generator(test_case): params.update(test_case.get('params', {})) ydl = YoutubeDL(params) - for ie in youtube_dl.extractor.gen_extractors(): - ydl.add_info_extractor(ie) + ydl.add_default_info_extractors() finished_hook_called = set() def _hook(status): if status['status'] == 'finished': |