Style fixes for extractors: remove spaces around (,),{ and }
[youtube-dl] / youtube_dl / extractor / mofosex.py
index a0c926cd12b924519abfa5070176c30b11702219..b9430b09b749ad8c1dba28e3db794ef435b5aac8 100644 (file)
@@ -31,10 +31,10 @@ class MofosexIE(InfoExtractor):
 
         video_title = self._html_search_regex(r'<h1>(.+?)<', webpage, u'title')
         video_url = compat_urllib_parse.unquote(self._html_search_regex(r'flashvars.video_url = \'([^\']+)', webpage, u'video_url'))
-        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 = "-".join( format )
+        format = "-".join(format)
 
         age_limit = self._rta_search(webpage)