From 021a0db8f787521757919fde5a2303205312abff Mon Sep 17 00:00:00 2001 From: Will Sewell Date: Fri, 21 Nov 2014 23:21:03 +0000 Subject: [PATCH] [vk.com] Simplified the page_id acquisition by using the id matched in the URL earlier on. --- youtube_dl/extractor/vk.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/youtube_dl/extractor/vk.py b/youtube_dl/extractor/vk.py index e8d7cdeae..b4e261fad 100644 --- a/youtube_dl/extractor/vk.py +++ b/youtube_dl/extractor/vk.py @@ -218,13 +218,7 @@ class VKUserVideosIE(InfoExtractor): } def _real_extract(self, url): - # Extract page id - mobj = re.match(self._VALID_URL, url) - if mobj is None: - raise ExtractorError('Invalid URL: %s' % url) - - # Download page and get video ids - page_id = mobj.group(1) + page_id = self._match_id(url) page = self._download_webpage(url, page_id) video_ids = orderedSet(m.group(1) for m in re.finditer(r'href="/video([0-9_]+)"', page))