[extractor] escape forgotten dot for hostnames in regular expression (#28530)

This commit is contained in:
The Hatsune Daishi
2021-03-24 23:33:19 +09:00
committed by GitHub
parent a40002444e
commit eafcadea26
2 changed files with 2 additions and 2 deletions

View File

@ -2953,7 +2953,7 @@ class GenericIE(InfoExtractor):
webpage)
if not mobj:
mobj = re.search(
r'data-video-link=["\'](?P<url>http://m.mlb.com/video/[^"\']+)',
r'data-video-link=["\'](?P<url>http://m\.mlb\.com/video/[^"\']+)',
webpage)
if mobj is not None:
return self.url_result(mobj.group('url'), 'MLB')