diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-07-17 23:54:38 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-07-17 23:54:38 +0600 |
commit | c60e8cfaf7405e8b8075f06a62e7547adad8beba (patch) | |
tree | 5ae1f0816dd50284cd90768ff41bed915982cb2e /youtube_dl/extractor/ehow.py | |
parent | 7fd002c0061f9f96eca2224553a2551748970e7d (diff) |
[ehow] Simplify
Diffstat (limited to 'youtube_dl/extractor/ehow.py')
-rw-r--r-- | youtube_dl/extractor/ehow.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/youtube_dl/extractor/ehow.py b/youtube_dl/extractor/ehow.py index ba9685991..b1cd4f5d4 100644 --- a/youtube_dl/extractor/ehow.py +++ b/youtube_dl/extractor/ehow.py @@ -1,9 +1,7 @@ from __future__ import unicode_literals -from ..compat import ( - compat_urllib_parse_unquote, -) from .common import InfoExtractor +from ..compat import compat_urllib_parse_unquote class EHowIE(InfoExtractor): |