浏览代码

[plays] PEP 8

Sergey M․ 9 年之前
父节点
当前提交
28280e8ded
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      youtube_dl/extractor/plays.py

+ 3 - 2
youtube_dl/extractor/plays.py

@@ -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()