PEP8: applied even more rules
[youtube-dl] / youtube_dl / extractor / videofyme.py
index d69fe1e778c5e13eef89537ae7b87090b3dd55df..d764e60fb506ace0e8290039976c5b5d7415b549 100644 (file)
@@ -28,11 +28,11 @@ class VideofyMeIE(InfoExtractor):
         mobj = re.match(self._VALID_URL, url)
         video_id = mobj.group('id')
         config = self._download_xml('http://sunshine.videofy.me/?videoId=%s' % video_id,
-                                            video_id)
+                                    video_id)
         video = config.find('video')
         sources = video.find('sources')
         url_node = next(node for node in [find_xpath_attr(sources, 'source', 'id', 'HQ %s' % key)
-            for key in ['on', 'av', 'off']] if node is not None)
+                                          for key in ['on', 'av', 'off']] if node is not None)
         video_url = url_node.find('url').text
 
         return {'id': video_id,