diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-04-23 21:59:18 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-04-23 21:59:18 +0600 |
commit | d7403332248a3893810f0461a682229552e1fd9e (patch) | |
tree | 1b3ed22f3185ea82c995f5c529ccbb6c6d6b50c3 /youtube_dl | |
parent | c610f38ba9586f21f632e115cbc15e172d60ee40 (diff) |
[cracked] Modernize
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/cracked.py | 3 |
1 files changed, 1 insertions, 2 deletions
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) |