youtube-dl

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

commit 8119597d6ff52a671fa359378dfbdee13f24f882
parent 43abd79950b7ba0c3b6e8a26b624e439036b1c7a
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 10 Oct 2015 22:08:38 +0600

[zingmp3] Add fatal flag

Diffstat:
Myoutube_dl/extractor/zingmp3.py | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/zingmp3.py b/youtube_dl/extractor/zingmp3.py @@ -9,9 +9,11 @@ from ..utils import ExtractorError class ZingMp3BaseInfoExtractor(InfoExtractor): - def _extract_item(self, item): + def _extract_item(self, item, fatal=True): error_message = item.find('./errormessage').text if error_message: + if not fatal: + return raise ExtractorError( '%s returned error: %s' % (self.IE_NAME, error_message), expected=True)