From 232eb88bfefa0bc6d9ba8df608de62704dbf217c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= Date: Fri, 12 Jul 2013 14:52:01 +0200 Subject: [PATCH] GenericIE: allow to match declaration of the Brightocove parameters that use ' instead of " --- youtube_dl/extractor/generic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index 33790741f..b633e896c 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -120,7 +120,7 @@ class GenericIE(InfoExtractor): self.report_extraction(video_id) # Look for BrigthCove: - m_brightcove = re.search(r'', webpage, re.DOTALL) + m_brightcove = re.search(r'', webpage, re.DOTALL) if m_brightcove is not None: self.to_screen(u'Brightcove video detected.') bc_url = BrightcoveIE._build_brighcove_url(m_brightcove.group())