PEP8: applied even more rules
[youtube-dl] / youtube_dl / extractor / appletrailers.py
index 567a76cf088428d90a58b7a7e9a9da6566daaf47..87580147dcb4176b163417053ac5a2489cf556c3 100644 (file)
@@ -88,7 +88,7 @@ class AppleTrailersIE(InfoExtractor):
         for li in doc.findall('./div/ul/li'):
             on_click = li.find('.//a').attrib['onClick']
             trailer_info_json = self._search_regex(self._JSON_RE,
-                on_click, 'trailer info')
+                                                   on_click, 'trailer info')
             trailer_info = json.loads(trailer_info_json)
             title = trailer_info['title']
             video_id = movie + '-' + re.sub(r'[^a-zA-Z0-9]', '', title).lower()