diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-07-14 09:25:51 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-07-14 09:25:51 +0200 |
commit | 0ab5531363603e1a882a087d2514d43ca201dca2 (patch) | |
tree | 52c4a9efaa57415b7a186d3887034a61b7517640 /youtube_dl/extractor/livestream.py | |
parent | b4444d5ca26e09d6766b3471974e41032e3fcbf4 (diff) |
[livestream] fix import statement
Diffstat (limited to 'youtube_dl/extractor/livestream.py')
-rw-r--r-- | youtube_dl/extractor/livestream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/livestream.py b/youtube_dl/extractor/livestream.py index 04f0b3820..309921078 100644 --- a/youtube_dl/extractor/livestream.py +++ b/youtube_dl/extractor/livestream.py @@ -2,7 +2,7 @@ import re import json from .common import InfoExtractor -from ..utils import compat_urllib_parse_urlparse, compat_urlparse, +from ..utils import compat_urllib_parse_urlparse, compat_urlparse class LivestreamIE(InfoExtractor): |