From 1df4229bd726bada121998ad2a3c7c7648561cee Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Thu, 6 Feb 2014 04:15:11 +0100 Subject: [PATCH] [mtv/gametrailers] Change order of title preference It looks like the plain title is better again --- youtube_dl/extractor/mtv.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/mtv.py b/youtube_dl/extractor/mtv.py index 4521451ac..6f5180892 100644 --- a/youtube_dl/extractor/mtv.py +++ b/youtube_dl/extractor/mtv.py @@ -82,10 +82,13 @@ class MTVServicesInfoExtractor(InfoExtractor): title_el = find_xpath_attr( itemdoc, './/{http://search.yahoo.com/mrss/}category', 'scheme', 'urn:mtvn:video_title') - 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') + if title_el.text is None: + title_el = None + if title_el is None: + title_el = itemdoc.find('.//{http://search.yahoo.com/mrss/}title') + title = title_el.text if title is None: raise ExtractorError('Could not find video title') -- 2.30.2