aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/common.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-01-03 12:51:37 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-01-03 12:51:37 +0100
commit9887c9b2d62258645de73aa69f18bfff5f540174 (patch)
tree27f5b7290f0be615dce7b31578f0bea0ca59b240 /youtube_dl/extractor/common.py
parentd2fee313ec71ad8a4d8b57ec9f433210ee01056b (diff)
downloadyoutube-dl-9887c9b2d62258645de73aa69f18bfff5f540174.tar.xz
[jpopsuki] Simplify
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r--youtube_dl/extractor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index f7247752e..f498bcf6f 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -378,7 +378,7 @@ class InfoExtractor(object):
@staticmethod
def _og_regexes(prop):
content_re = r'content=(?:"([^>]+?)"|\'(.+?)\')'
- property_re = r'property=[\'"]og:%s[\'"]' % re.escape(prop)
+ property_re = r'(?:name|property)=[\'"]og:%s[\'"]' % re.escape(prop)
template = r'<meta[^>]+?%s[^>]+?%s'
return [
template % (property_re, content_re),