From: Jaime Marquínez Ferrándiz Date: Fri, 12 Jul 2013 12:52:01 +0000 (+0200) Subject: GenericIE: allow to match declaration of the Brightocove parameters that use ' instea... X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=232eb88bfefa0bc6d9ba8df608de62704dbf217c;p=youtube-dl GenericIE: allow to match declaration of the Brightocove parameters that use ' instead of " --- 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())