Style fixes for extractors: remove spaces around (,),{ and }
[youtube-dl] / youtube_dl / extractor / extremetube.py
index 0f1eec40f86de4a7ac52507f77398b7d20039de2..1c20e43644b917d5b73b712d1630740f1a7e7e81 100644 (file)
@@ -33,10 +33,10 @@ class ExtremeTubeIE(InfoExtractor):
         video_title = self._html_search_regex(r'<h1 [^>]*?title="([^"]+)"[^>]*>\1<', webpage, u'title')
         uploader = self._html_search_regex(r'>Posted by:(?=<)(?:\s|<[^>]*>)*(.+?)\|', webpage, u'uploader', fatal=False)
         video_url = compat_urllib_parse.unquote(self._html_search_regex(r'video_url=(.+?)&amp;', 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)
 
         return {
             'id': video_id,