mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-10-04 15:34:58 -04:00
[extractor] Common function _match_valid_url
This commit is contained in:
@@ -15,7 +15,7 @@ class TestURLIE(InfoExtractor):
|
||||
def _real_extract(self, url):
|
||||
from ..extractor import gen_extractors
|
||||
|
||||
mobj = re.match(self._VALID_URL, url)
|
||||
mobj = self._match_valid_url(url)
|
||||
video_id = mobj.group('id')
|
||||
extractor_id = mobj.group('extractor')
|
||||
all_extractors = gen_extractors()
|
||||
|
Reference in New Issue
Block a user