From 023fa8c44037d747c719b25428624db8e9636093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= Date: Thu, 27 Jun 2013 23:51:06 +0200 Subject: Add function add_default_info_extractors to YoutubeDL It adds to the list the ies returned by ge_extractors --- test/test_download.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'test/test_download.py') diff --git a/test/test_download.py b/test/test_download.py index db43e99..786ebba 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': -- cgit v1.1