summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-02-06 04:15:11 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-02-06 04:15:12 +0100
commit1df4229bd726bada121998ad2a3c7c7648561cee (patch)
treedea352e34187f387f9d2211e08322bfb8860d819
parent3c995527e993927996278234be724cecbe9b237e (diff)
downloadyoutube-dl-1df4229bd726bada121998ad2a3c7c7648561cee.tar.gz
youtube-dl-1df4229bd726bada121998ad2a3c7c7648561cee.tar.xz
youtube-dl-1df4229bd726bada121998ad2a3c7c7648561cee.zip
[mtv/gametrailers] Change order of title preference
It looks like the plain title is better again
-rw-r--r--youtube_dl/extractor/mtv.py7
1 files 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
@@ -83,9 +83,12 @@ class MTVServicesInfoExtractor(InfoExtractor):
                 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')