aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-02-11 22:02:57 +0600
committerSergey M․ <dstftw@gmail.com>2016-02-11 22:02:57 +0600
commit28280e8ded11ca13d67b705a5a56fb930ba26205 (patch)
treebe5e90c467b36fd9c41d48897b5899e61a99b093
parent6b3fbd3425180a00d99e91e6f2b9b5896c567ea4 (diff)
downloadyoutube-dl-28280e8ded11ca13d67b705a5a56fb930ba26205.tar.xz
[plays] PEP 8
-rw-r--r--youtube_dl/extractor/plays.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/extractor/plays.py b/youtube_dl/extractor/plays.py
index 2aba7cb9c..c3c38cf4a 100644
--- a/youtube_dl/extractor/plays.py
+++ b/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()