Fix extraction of og content in single quotes

This commit is contained in:
dst 2014-01-31 03:57:33 +07:00
parent 659aa21ba1
commit c1206423c4
1 changed files with 1 additions and 1 deletions

View File

@ -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'<meta[^>]+?%s[^>]+?%s'
return [