diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-04-19 21:47:03 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-04-19 21:47:03 +0700 |
commit | 481ef51e2345b1b34b16148eb6e5e58e9fb45cfb (patch) | |
tree | 9f477f8ec87beaa551210d2df49614d0079095b4 /youtube_dl/extractor | |
parent | 5b995f713bf45e9e373029e1411811dfde855088 (diff) |
[brightcove] PEP 8
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/brightcove.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py index a2db705b0..183ac7dd0 100644 --- a/youtube_dl/extractor/brightcove.py +++ b/youtube_dl/extractor/brightcove.py @@ -277,7 +277,7 @@ class BrightcoveLegacyIE(InfoExtractor): return list(filter(None, [ cls._build_brighcove_url_from_js(custom_bc) for custom_bc in matches])) - return [url for _, url in re.findall( + return [src for _, src in re.findall( r'<iframe[^>]+src=([\'"])((?:https?:)?//link\.brightcove\.com/services/player/(?!\1).+)\1', webpage)] def _real_extract(self, url): |