[extractor/common] Allow multiline content tags

This commit is contained in:
Sergey M․ 2015-01-01 00:37:14 +06:00
parent b7a7319c38
commit 6c6f1408f2
1 changed files with 1 additions and 1 deletions

View File

@ -589,7 +589,7 @@ class InfoExtractor(object):
if display_name is None:
display_name = name
return self._html_search_regex(
r'''(?ix)<meta
r'''(?isx)<meta
(?=[^>]+(?:itemprop|name|property)=(["\']?)%s\1)
[^>]+content=(["\'])(?P<content>.*?)\1''' % re.escape(name),
html, display_name, fatal=fatal, group='content', **kwargs)