[plays] PEP 8
authorSergey M․ <dstftw@gmail.com>
Thu, 11 Feb 2016 16:02:57 +0000 (22:02 +0600)
committerSergey M․ <dstftw@gmail.com>
Thu, 11 Feb 2016 16:02:57 +0000 (22:02 +0600)
youtube_dl/extractor/plays.py

index 2aba7cb9c05b4cd89acc7715a1ad5c08401dccf3..c3c38cf4ac07787e520c7c2c7eac7da1ed2aa8b4 100644 (file)
@@ -26,8 +26,9 @@ class PlaysTVIE(InfoExtractor):
 
         title = self._og_search_title(webpage)
         content = self._parse_json(
-            self._search_regex(r'R\.bindContent\(({.+?})\);', webpage,
-            'content'), video_id)['content']
+            self._search_regex(
+                r'R\.bindContent\(({.+?})\);', webpage,
+                'content'), video_id)['content']
         mpd_url, sources = re.search(
             r'(?s)<video[^>]+data-mpd="([^"]+)"[^>]*>(.+?)</video>',
             content).groups()