Correct --max-downloads with --ignore-errors

This commit is contained in:
Philipp Hagemeister 2014-01-23 10:36:47 +01:00
parent 18a25c5d78
commit d3e5bbf437
1 changed files with 2 additions and 0 deletions

View File

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