[gametrailers] Fix gametrailers test
This commit is contained in:
parent
96cb10a5f5
commit
713d31fac8
2 changed files with 4 additions and 5 deletions
|
@ -85,11 +85,9 @@ class MTVServicesInfoExtractor(InfoExtractor):
|
|||
if title_el is None:
|
||||
title_el = itemdoc.find('.//{http://search.yahoo.com/mrss/}title')
|
||||
if title_el is None:
|
||||
title_el = itemdoc.find('./title')
|
||||
title_el = itemdoc.find('.//title')
|
||||
if title_el.text is None:
|
||||
title_el = None
|
||||
if title_el is None:
|
||||
title_el = itemdoc.find('./item/title')
|
||||
|
||||
title = title_el.text
|
||||
if title is None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue