aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/xtube.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-11-03 14:03:17 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-11-03 14:06:47 +0100
commita56f9de156c7cca29dfa45de1dadc66e10a265f2 (patch)
tree308ddf73354279b517b801aa0655ae5e08055cd6 /youtube_dl/extractor/xtube.py
parentfa5d47af4b82356c39c1e8d7b2ada9b539371735 (diff)
downloadyoutube-dl-a56f9de156c7cca29dfa45de1dadc66e10a265f2.zip
youtube-dl-a56f9de156c7cca29dfa45de1dadc66e10a265f2.tar.gz
youtube-dl-a56f9de156c7cca29dfa45de1dadc66e10a265f2.tar.bz2
Style fixes for extractors: remove spaces around (,),{ and }
Diffstat (limited to 'youtube_dl/extractor/xtube.py')
-rw-r--r--youtube_dl/extractor/xtube.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/xtube.py b/youtube_dl/extractor/xtube.py
index 483fb07..03ad88b 100644
--- a/youtube_dl/extractor/xtube.py
+++ b/youtube_dl/extractor/xtube.py
@@ -35,12 +35,12 @@ class XTubeIE(InfoExtractor):
video_uploader = self._html_search_regex(r'so_s\.addVariable\("owner_u", "([^"]+)', webpage, u'uploader', fatal=False)
video_description = self._html_search_regex(r'<p class="video_description">([^<]+)', webpage, u'description', default=None)
video_url= self._html_search_regex(r'var videoMp4 = "([^"]+)', webpage, u'video_url').replace('\\/', '/')
- path = compat_urllib_parse_urlparse( video_url ).path
- extension = os.path.splitext( path )[1][1:]
+ path = compat_urllib_parse_urlparse(video_url).path
+ extension = os.path.splitext(path)[1][1:]
format = path.split('/')[5].split('_')[:2]
format[0] += 'p'
format[1] += 'k'
- format = "-".join( format )
+ format = "-".join(format)
return {
'id': video_id,