aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/common.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-08-15 15:58:30 +0600
committerSergey M․ <dstftw@gmail.com>2015-08-15 15:58:30 +0600
commit8b9848ac5678356757f67a412f7ed89a0f559be7 (patch)
tree0a0229c1559b9ffb94d46f70edfe1e37b3162654 /youtube_dl/extractor/common.py
parent8b8c1093b65ee02aad859ed8d82217312ed0d9d8 (diff)
downloadyoutube-dl-8b9848ac5678356757f67a412f7ed89a0f559be7.tar.xz
[extractor/common] Expand meta regex
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 5982055be..16ae4b98f 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -640,7 +640,7 @@ class InfoExtractor(object):
@staticmethod
def _meta_regex(prop):
return r'''(?isx)<meta
- (?=[^>]+(?:itemprop|name|property|id)=(["\']?)%s\1)
+ (?=[^>]+(?:itemprop|name|property|id|http-equiv)=(["\']?)%s\1)
[^>]+?content=(["\'])(?P<content>.*?)\2''' % re.escape(prop)
def _og_search_property(self, prop, html, name=None, **kargs):