about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-01-30 21:54:14 +0600
committerSergey M․ <dstftw@gmail.com>2015-01-30 21:54:14 +0600
commitdee3f73787226e3faaf409f8c355b5f8d5dc5632 (patch)
tree0f5ee343cf404f207e8f2c450e86935748cb2e0a
parentd543bdc351c073621e2f8647fad0f9c8da1cf5b6 (diff)
downloadyoutube-dl-dee3f73787226e3faaf409f8c355b5f8d5dc5632.tar.gz
youtube-dl-dee3f73787226e3faaf409f8c355b5f8d5dc5632.tar.xz
youtube-dl-dee3f73787226e3faaf409f8c355b5f8d5dc5632.zip
[spike] Modernize
-rw-r--r--youtube_dl/extractor/spike.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/youtube_dl/extractor/spike.py b/youtube_dl/extractor/spike.py
index a3adf54e3..abba66aee 100644
--- a/youtube_dl/extractor/spike.py
+++ b/youtube_dl/extractor/spike.py
@@ -25,8 +25,7 @@ class SpikeIE(MTVServicesInfoExtractor):
     _MOBILE_TEMPLATE = 'http://m.spike.com/videos/video.rbml?id=%s'
 
     def _real_extract(self, url):
-        mobj = re.search(self._VALID_URL, url)
-        mobile_id = mobj.group('mobile_id')
-        if mobile_id is not None:
+        mobile_id = self._match_id(url)
+        if mobile_id:
             url = 'http://www.spike.com/video-clips/%s' % mobile_id
         return super(SpikeIE, self)._real_extract(url)