From: Sergey M․ Date: Fri, 9 Oct 2015 19:44:33 +0000 (+0600) Subject: [extractor/common] Allow quoteless content attribute in og regexes (Closes #7115) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=4180a3d8b7c40792b5371ca8804c1dad8fabd56d;p=youtube-dl [extractor/common] Allow quoteless content attribute in og regexes (Closes #7115) --- diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 242618c58..0082a4c84 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -645,7 +645,7 @@ class InfoExtractor(object): # Helper functions for extracting OpenGraph info @staticmethod def _og_regexes(prop): - content_re = r'content=(?:"([^>]+?)"|\'([^>]+?)\')' + content_re = r'content=(?:"([^>]+?)"|\'([^>]+?)\'|\s*([^\s"\'=<>`]+?))' property_re = r'(?:name|property)=[\'"]?og:%s[\'"]?' % re.escape(prop) template = r']+?%s[^>]+?%s' return [