From: dst Date: Thu, 30 Jan 2014 20:57:33 +0000 (+0700) Subject: Fix extraction of og content in single quotes X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=c1206423c42993133e374c10ead136746b31232d;p=youtube-dl Fix extraction of og content in single quotes --- diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 70ba9eaba..2c0c75604 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -399,7 +399,7 @@ class InfoExtractor(object): # Helper functions for extracting OpenGraph info @staticmethod def _og_regexes(prop): - content_re = r'content=(?:"([^>]+?)"|\'(.+?)\')' + content_re = r'content=(?:"([^>]+?)"|\'([^>]+?)\')' property_re = r'(?:name|property)=[\'"]og:%s[\'"]' % re.escape(prop) template = r']+?%s[^>]+?%s' return [