[spike] Modernize
This commit is contained in:
parent
d543bdc351
commit
dee3f73787
1 changed files with 2 additions and 3 deletions
|
@ -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 = self._match_id(url)
|
||||||
mobile_id = mobj.group('mobile_id')
|
if mobile_id:
|
||||||
if mobile_id is not None:
|
|
||||||
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)
|
||||||
|
|
Loading…
Reference in a new issue