about summary refs log tree commit diff
path: root/youtube_dl/extractor/livestream.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-07-14 09:25:51 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-07-14 09:25:51 +0200
commit0ab5531363603e1a882a087d2514d43ca201dca2 (patch)
tree52c4a9efaa57415b7a186d3887034a61b7517640 /youtube_dl/extractor/livestream.py
parentb4444d5ca26e09d6766b3471974e41032e3fcbf4 (diff)
downloadyoutube-dl-0ab5531363603e1a882a087d2514d43ca201dca2.tar.gz
youtube-dl-0ab5531363603e1a882a087d2514d43ca201dca2.tar.xz
youtube-dl-0ab5531363603e1a882a087d2514d43ca201dca2.zip
[livestream] fix import statement
Diffstat (limited to 'youtube_dl/extractor/livestream.py')
-rw-r--r--youtube_dl/extractor/livestream.py2
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):