mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[brightcove] the format function requires to specify the index in python2.6
This commit is contained in:
parent
12c167c881
commit
c2b6a482d5
1 changed files with 1 additions and 1 deletions
|
@ -33,5 +33,5 @@ def _real_extract(self, url):
|
|||
raise ExtractorError(u'Could not extract the Brightcove url')
|
||||
# The BrightcoveExperience object doesn't contain the video id, we set
|
||||
# it manually
|
||||
bc_url += '&%40videoPlayer={}'.format(chapter_id)
|
||||
bc_url += '&%40videoPlayer={0}'.format(chapter_id)
|
||||
return self.url_result(bc_url, BrightcoveIE.ie_key())
|
||||
|
|
Loading…
Reference in a new issue