aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/FileDownloader.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-06-23 22:42:59 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-06-23 22:42:59 +0200
commit0824c28c8bb8390cd750c3bf95c6307c8462dcc1 (patch)
tree17651cf485db8621e9377863c311c631e6adb6a8 /youtube_dl/FileDownloader.py
parentc59b4aaeef04cba1c98cbc9934fd6bc8d8ba416c (diff)
downloadyoutube-dl-0824c28c8bb8390cd750c3bf95c6307c8462dcc1.tar.xz
Remove mentions of old InfoExtractors module
Diffstat (limited to 'youtube_dl/FileDownloader.py')
-rw-r--r--youtube_dl/FileDownloader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py
index b3a07617c..f21c66c29 100644
--- a/youtube_dl/FileDownloader.py
+++ b/youtube_dl/FileDownloader.py
@@ -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):