From: Sergey M․ Date: Thu, 23 Apr 2015 15:59:18 +0000 (+0600) Subject: [cracked] Modernize X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=d7403332248a3893810f0461a682229552e1fd9e;p=youtube-dl [cracked] Modernize --- diff --git a/youtube_dl/extractor/cracked.py b/youtube_dl/extractor/cracked.py index b2b151558..94d03ce2a 100644 --- a/youtube_dl/extractor/cracked.py +++ b/youtube_dl/extractor/cracked.py @@ -37,8 +37,7 @@ class CrackedIE(InfoExtractor): }] def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - video_id = mobj.group('id') + video_id = self._match_id(url) webpage = self._download_webpage(url, video_id)