youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 0dfe9bc9d286ceb0fd35b0fc8857ba1a86cecdd3
parent 4d1cdb5bfebcc93d73ffb710ec7af0752d698dca
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 15 Apr 2015 21:02:34 +0600

[mtv] Capture and output error message (#5420)

Diffstat:
Myoutube_dl/extractor/mtv.py | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/mtv.py b/youtube_dl/extractor/mtv.py @@ -118,6 +118,14 @@ class MTVServicesInfoExtractor(InfoExtractor): mediagen_doc = self._download_xml(mediagen_url, video_id, 'Downloading video urls') + item = mediagen_doc.find('./video/item') + if item is not None and item.get('type') == 'text': + message = '%s returned error: ' % self.IE_NAME + if item.get('code') is not None: + message += '%s - ' % item.get('code') + message += item.text + raise ExtractorError(message, expected=True) + description_node = itemdoc.find('description') if description_node is not None: description = description_node.text.strip()