aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-04-19 21:47:03 +0700
committerSergey M․ <dstftw@gmail.com>2017-04-19 21:47:03 +0700
commit481ef51e2345b1b34b16148eb6e5e58e9fb45cfb (patch)
tree9f477f8ec87beaa551210d2df49614d0079095b4 /youtube_dl
parent5b995f713bf45e9e373029e1411811dfde855088 (diff)
downloadyoutube-dl-481ef51e2345b1b34b16148eb6e5e58e9fb45cfb.tar.xz
[brightcove] PEP 8
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/brightcove.py2
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):