diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-04-18 21:46:25 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-04-18 21:46:25 +0700 |
commit | f631b557915eae6c72f2f503255903c92481e85e (patch) | |
tree | ef1ab9d73001924985803a3bda6d6c626134edfd /youtube_dl/extractor/yahoo.py | |
parent | bf1b87cd919f07b7fef204838be73981e122ee11 (diff) |
[brightcove] Fix _extract_url (closes #12782)
Diffstat (limited to 'youtube_dl/extractor/yahoo.py')
-rw-r--r-- | youtube_dl/extractor/yahoo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/yahoo.py b/youtube_dl/extractor/yahoo.py index 4951414e9..38f82bf44 100644 --- a/youtube_dl/extractor/yahoo.py +++ b/youtube_dl/extractor/yahoo.py @@ -258,7 +258,7 @@ class YahooIE(InfoExtractor): return self.url_result(bc_url, BrightcoveLegacyIE.ie_key()) # Look for Brightcove New Studio embeds - bc_url = BrightcoveNewIE._extract_url(webpage) + bc_url = BrightcoveNewIE._extract_url(self, webpage) if bc_url: return self.url_result(bc_url, BrightcoveNewIE.ie_key()) |