Browse Source

[zingmp3] Capture error message

Sergey M․ 10 năm trước cách đây
mục cha
commit
5115652828
1 tập tin đã thay đổi với 8 bổ sung2 xóa
  1. 8 2
      youtube_dl/extractor/zingmp3.py

+ 8 - 2
youtube_dl/extractor/zingmp3.py

@@ -4,12 +4,18 @@ from __future__ import unicode_literals
 import re
 
 from .common import InfoExtractor
+from ..utils import ExtractorError
 
 
 class ZingMp3BaseInfoExtractor(InfoExtractor):
 
-    @staticmethod
-    def _extract_item(item):
+    def _extract_item(self, item):
+        error_message = item.find('./errormessage').text
+        if error_message:
+            raise ExtractorError(
+                '%s returned error: %s' % (self.IE_NAME, error_message),
+                expected=True)
+
         title = item.find('./title').text.strip()
         source = item.find('./source').text
         extension = item.attrib['type']