Remove mentions of old InfoExtractors module
This commit is contained in:
parent
c59b4aaeef
commit
0824c28c8b
8 changed files with 11 additions and 10 deletions
|
@ -13,7 +13,7 @@ if os.name == 'nt':
|
|||
import ctypes
|
||||
|
||||
from .utils import *
|
||||
from .InfoExtractors import get_info_extractor
|
||||
from .extractor import get_info_extractor
|
||||
|
||||
|
||||
class FileDownloader(object):
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# Legacy file for backwards compatibility, use youtube_dl.extractor instead!
|
||||
|
||||
from .extractor.common import InfoExtractor, SearchInfoExtractor
|
||||
from .extractor import gen_extractors, get_info_extractor
|
||||
|
|
|
@ -45,7 +45,7 @@ from .utils import *
|
|||
from .update import update_self
|
||||
from .version import __version__
|
||||
from .FileDownloader import *
|
||||
from .InfoExtractors import gen_extractors
|
||||
from .extractor import gen_extractors
|
||||
from .PostProcessor import *
|
||||
|
||||
def parseOpts(overrideArguments=None):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue