diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-06-25 17:12:35 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-06-25 17:12:35 +0200 |
commit | 515d7a5e73082c0f2e35bf7e778573bb2bbd576e (patch) | |
tree | 1bbb87df93f4629a9d20ea8074880cf97258084c /youtube_dl/extractor/__init__.py | |
parent | 98bcd2834a8652e12914e8b76b871a36be32f0ab (diff) | |
parent | 14fbdc9cddf3d914d9cae562eec44e26695763b4 (diff) |
Add Jukebox IE
Diffstat (limited to 'youtube_dl/extractor/__init__.py')
-rw-r--r-- | youtube_dl/extractor/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index 9878ad942..7b291f907 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -22,6 +22,7 @@ from .hypem import HypemIE from .ina import InaIE from .infoq import InfoQIE from .justintv import JustinTVIE +from .jukebox import JukeboxIE from .keek import KeekIE from .liveleak import LiveLeakIE from .metacafe import MetacafeIE @@ -127,6 +128,7 @@ def gen_extractors(): StatigramIE(), BreakIE(), VevoIE(), + JukeboxIE(), GenericIE() ] |