PEP8: applied even more rules
[youtube-dl] / youtube_dl / extractor / youporn.py
index ee61e2381c204c7bf73fd1ee434387e98375201b..97ef9c17e5b29e8aa9bd72c027acab63a74d81b3 100644 (file)
@@ -64,7 +64,7 @@ class YouPornIE(InfoExtractor):
         # Get all of the links from the page
         DOWNLOAD_LIST_RE = r'(?s)<ul class="downloadList">(?P<download_list>.*?)</ul>'
         download_list_html = self._search_regex(DOWNLOAD_LIST_RE,
-            webpage, 'download list').strip()
+                                                webpage, 'download list').strip()
         LINK_RE = r'<a href="([^"]+)">'
         links = re.findall(LINK_RE, download_list_html)