From 4b942883019968c556a6c6b989b346cecc474ac2 Mon Sep 17 00:00:00 2001 From: Yen Chi Hsuan Date: Fri, 11 Dec 2015 17:32:29 +0800 Subject: [PATCH] [vevo] Use _match_id --- youtube_dl/extractor/vevo.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/youtube_dl/extractor/vevo.py b/youtube_dl/extractor/vevo.py index 61813301a..1d834970c 100644 --- a/youtube_dl/extractor/vevo.py +++ b/youtube_dl/extractor/vevo.py @@ -169,8 +169,7 @@ class VevoIE(InfoExtractor): preference=0) def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - video_id = mobj.group('id') + video_id = self._match_id(url) json_url = 'http://videoplayer.vevo.com/VideoService/AuthenticateVideo?isrc=%s' % video_id response = self._download_json(json_url, video_id)