diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-10-18 09:11:02 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-10-18 09:11:02 +0600 |
commit | 448ef1f31c8bcc1550cf907fd46e31026ec981b2 (patch) | |
tree | bc51f87e71d0dd10a16db8e1a49a2605cc355292 /youtube_dl | |
parent | 49941c4e4f6e33785a3be1e0d103bd81657d8a0d (diff) |
[extractor/common] Allow angle brackets in attributes in _og_regexes (#7215)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index a0c4af92f..4365077f1 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=(?:"([^>]+?)"|\'([^>]+?)\'|\s*([^\s"\'=<>`]+?))' + content_re = r'content=(?:"([^"]+?)"|\'([^\']+?)\'|\s*([^\s"\'=<>`]+?))' property_re = (r'(?:name|property)=(?:\'og:%(prop)s\'|"og:%(prop)s"|\s*og:%(prop)s\b)' % {'prop': re.escape(prop)}) template = r'<meta[^>]+?%s[^>]+?%s' |