浏览代码

[tudou] Improve error detection (closes #9175)

Yen Chi Hsuan 9 年之前
父节点
当前提交
bec47a0748
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      youtube_dl/extractor/tudou.py

+ 3 - 0
youtube_dl/extractor/tudou.py

@@ -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