commit: d3e5bbf437082bc43ff71a93eaaedb65c0b8917f
parent 18a25c5d78528dd27e2a92aa0d44088a8c04bcf0
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Thu, 23 Jan 2014 10:36:47 +0100
Correct --max-downloads with --ignore-errors
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
@@ -517,6 +517,8 @@ class YoutubeDL(object):
except ExtractorError as de: # An error we somewhat expected
self.report_error(compat_str(de), de.format_traceback())
break
+ except MaxDownloadsReached:
+ raise
except Exception as e:
if self.params.get('ignoreerrors', False):
self.report_error(compat_str(e), tb=compat_str(traceback.format_exc()))