Browse Source

[spike] Modernize

Sergey M․ 10 years ago
parent
commit
dee3f73787
1 changed files with 2 additions and 3 deletions
  1. 2 3
      youtube_dl/extractor/spike.py

+ 2 - 3
youtube_dl/extractor/spike.py

@@ -25,8 +25,7 @@ class SpikeIE(MTVServicesInfoExtractor):
     _MOBILE_TEMPLATE = 'http://m.spike.com/videos/video.rbml?id=%s'
     _MOBILE_TEMPLATE = 'http://m.spike.com/videos/video.rbml?id=%s'
 
 
     def _real_extract(self, url):
     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
             url = 'http://www.spike.com/video-clips/%s' % mobile_id
         return super(SpikeIE, self)._real_extract(url)
         return super(SpikeIE, self)._real_extract(url)