diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-06-26 18:22:26 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-06-26 18:22:42 +0200 |
commit | ed92bc9f6e402434e6d69d2947739d0c4151d77e (patch) | |
tree | 5e63860c785fa410009059c326988d20368b836f /youtube_dl/extractor/__init__.py | |
parent | 9b0756f8f26f4c1744073cb2ac4bbe4608ca32ba (diff) | |
parent | b1dfdc51b1062f8e6c5a3270ec04fbf18cd5a867 (diff) |
[wimp] minor readability improvements (#940)
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 eaa213609..2750fc8f9 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -50,6 +50,7 @@ from .vbox7 import Vbox7IE from .vevo import VevoIE from .vimeo import VimeoIE from .vine import VineIE +from .wimp import WimpIE from .worldstarhiphop import WorldStarHipHopIE from .xhamster import XHamsterIE from .xnxx import XNXXIE @@ -134,6 +135,7 @@ def gen_extractors(): JukeboxIE(), TudouIE(), CSpanIE(), + WimpIE(), GenericIE() ] |