[tudou] Improve error detection (closes #9175)
[youtube-dl] / youtube_dl / extractor / tudou.py
index 63b5d5924fe3d88c95d1f9537fba07044d45e124..bb8b8e23424e7943f2133028aca187d4fcffeab9 100644 (file)
@@ -65,6 +65,9 @@ class TudouIE(InfoExtractor):
         if quality:
             info_url += '&hd' + quality
         xml_data = self._download_xml(info_url, video_id, 'Opening the info XML page')
+        error = xml_data.attrib.get('error')
+        if error is not None:
+            raise ExtractorError('Tudou said: %s' % error, expected=True)
         final_url = xml_data.text
         return final_url