diff options
Diffstat (limited to 'youtube_dl/extractor/common.py')
| -rw-r--r-- | youtube_dl/extractor/common.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 4f1b50880..1b049082d 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -364,7 +364,8 @@ class InfoExtractor(object):          if display_name is None:              display_name = name          return self._html_search_regex( -            r'''(?ix)<meta(?=[^>]+(?:name|property)=["\']%s["\']) +            r'''(?ix)<meta +                    (?=[^>]+(?:itemprop|name|property)=["\']%s["\'])                      [^>]+content=["\']([^"\']+)["\']''' % re.escape(name),              html, display_name, fatal=False) | 
