From c2b6a482d5aadd40972944694307fca3d4d352f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= Date: Sat, 9 Nov 2013 18:10:11 +0100 Subject: [PATCH] [brightcove] the format function requires to specify the index in python2.6 --- youtube_dl/extractor/eitb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/eitb.py b/youtube_dl/extractor/eitb.py index 022d90abc..4ba323148 100644 --- a/youtube_dl/extractor/eitb.py +++ b/youtube_dl/extractor/eitb.py @@ -33,5 +33,5 @@ class EitbIE(InfoExtractor): 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())