diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-07-23 02:43:59 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-07-23 02:43:59 +0200 |
commit | 92a86f4c1a539180664e1985926e8a751dde788e (patch) | |
tree | 197f9e13d43b510b15888541c0a49765d344ebdc | |
parent | dfe029a62c09677d1107907329aee5c2afddd961 (diff) |
Do not import from legacy FileDownloader class
-rw-r--r-- | youtube_dl/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index c6a5b2b5b..de7bc0f5f 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -97,7 +97,7 @@ from .utils import ( write_string, ) from .update import update_self -from .FileDownloader import ( +from .downloader import ( FileDownloader, ) from .extractor import gen_extractors |