aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/brightcove.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-04-18 21:46:25 +0700
committerSergey M․ <dstftw@gmail.com>2017-04-18 21:46:25 +0700
commitf631b557915eae6c72f2f503255903c92481e85e (patch)
treeef1ab9d73001924985803a3bda6d6c626134edfd /youtube_dl/extractor/brightcove.py
parentbf1b87cd919f07b7fef204838be73981e122ee11 (diff)
downloadyoutube-dl-f631b557915eae6c72f2f503255903c92481e85e.zip
youtube-dl-f631b557915eae6c72f2f503255903c92481e85e.tar.gz
youtube-dl-f631b557915eae6c72f2f503255903c92481e85e.tar.bz2
[brightcove] Fix _extract_url (closes #12782)
Diffstat (limited to 'youtube_dl/extractor/brightcove.py')
-rw-r--r--youtube_dl/extractor/brightcove.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py
index 124497e..c4fd96b 100644
--- a/youtube_dl/extractor/brightcove.py
+++ b/youtube_dl/extractor/brightcove.py
@@ -484,8 +484,8 @@ class BrightcoveNewIE(InfoExtractor):
}]
@staticmethod
- def _extract_url(webpage):
- urls = BrightcoveNewIE._extract_urls(webpage)
+ def _extract_url(ie, webpage):
+ urls = BrightcoveNewIE._extract_urls(ie, webpage)
return urls[0] if urls else None
@staticmethod