From d3d8d8184aafc22ed11edcd3ac175482fbb468e7 Mon Sep 17 00:00:00 2001 From: pukkandan Date: Sun, 6 Jun 2021 15:05:07 +0530 Subject: [extractor] Fix pre-checking archive for some extractors The `id` regex group must be present for `_match_id` and pre-checking archive to work correctly --- yt_dlp/extractor/metacafe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yt_dlp/extractor/metacafe.py') diff --git a/yt_dlp/extractor/metacafe.py b/yt_dlp/extractor/metacafe.py index 9e92416d1..6366028d2 100644 --- a/yt_dlp/extractor/metacafe.py +++ b/yt_dlp/extractor/metacafe.py @@ -19,7 +19,7 @@ from ..utils import ( class MetacafeIE(InfoExtractor): - _VALID_URL = r'https?://(?:www\.)?metacafe\.com/watch/(?P[^/]+)/(?P[^/?#]+)' + _VALID_URL = r'https?://(?:www\.)?metacafe\.com/watch/(?P[^/]+)/(?P[^/?#]+)' _DISCLAIMER = 'http://www.metacafe.com/family_filter/' _FILTER_POST = 'http://www.metacafe.com/f/index.php?inputType=filter&controllerGroup=user' IE_NAME = 'metacafe' -- cgit v1.2.3