X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fmtv.py;h=6f5180892756aec148c0e0b6172e007fe291f623;hb=95c29381eb8994370ee3924427ecc344ec891f63;hp=4521451ac933baabce786c76813e3e8407298b65;hpb=c0c2ddddcdbc524c04437e73b5b3f8220393aaa4;p=youtube-dl.git 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')