[gametrailers] Fix gametrailers test
parent
96cb10a5f5
commit
713d31fac8
|
@ -7,10 +7,11 @@ class GametrailersIE(MTVServicesInfoExtractor):
|
||||||
_VALID_URL = r'http://www\.gametrailers\.com/(?P<type>videos|reviews|full-episodes)/(?P<id>.*?)/(?P<title>.*)'
|
_VALID_URL = r'http://www\.gametrailers\.com/(?P<type>videos|reviews|full-episodes)/(?P<id>.*?)/(?P<title>.*)'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
'url': 'http://www.gametrailers.com/videos/zbvr8i/mirror-s-edge-2-e3-2013--debut-trailer',
|
'url': 'http://www.gametrailers.com/videos/zbvr8i/mirror-s-edge-2-e3-2013--debut-trailer',
|
||||||
'file': '70e9a5d7-cf25-4a10-9104-6f3e7342ae0d.mp4',
|
|
||||||
'md5': '4c8e67681a0ea7ec241e8c09b3ea8cf7',
|
'md5': '4c8e67681a0ea7ec241e8c09b3ea8cf7',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'title': 'Mirror\'s Edge 2|E3 2013: Debut Trailer',
|
'id': '70e9a5d7-cf25-4a10-9104-6f3e7342ae0d',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'E3 2013: Debut Trailer',
|
||||||
'description': 'Faith is back! Check out the World Premiere trailer for Mirror\'s Edge 2 straight from the EA Press Conference at E3 2013!',
|
'description': 'Faith is back! Check out the World Premiere trailer for Mirror\'s Edge 2 straight from the EA Press Conference at E3 2013!',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,11 +85,9 @@ class MTVServicesInfoExtractor(InfoExtractor):
|
||||||
if title_el is None:
|
if title_el is None:
|
||||||
title_el = itemdoc.find('.//{http://search.yahoo.com/mrss/}title')
|
title_el = itemdoc.find('.//{http://search.yahoo.com/mrss/}title')
|
||||||
if title_el is None:
|
if title_el is None:
|
||||||
title_el = itemdoc.find('./title')
|
title_el = itemdoc.find('.//title')
|
||||||
if title_el.text is None:
|
if title_el.text is None:
|
||||||
title_el = None
|
title_el = None
|
||||||
if title_el is None:
|
|
||||||
title_el = itemdoc.find('./item/title')
|
|
||||||
|
|
||||||
title = title_el.text
|
title = title_el.text
|
||||||
if title is None:
|
if title is None:
|
||||||
|
|
Loading…
Reference in New Issue