From: Philipp Hagemeister Date: Thu, 28 Mar 2013 23:19:58 +0000 (+0100) Subject: Add a note on MaxDownloadsReached (#732, thanks to CBGoodBuddy) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=a91556fd74adf8ccfa4f923e21a0150e97d38bde;p=youtube-dl Add a note on MaxDownloadsReached (#732, thanks to CBGoodBuddy) --- diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py index 725d4a016..96130152d 100644 --- a/youtube_dl/FileDownloader.py +++ b/youtube_dl/FileDownloader.py @@ -548,6 +548,9 @@ class FileDownloader(object): except ExtractorError as de: # An error we somewhat expected self.trouble(u'ERROR: ' + compat_str(de), de.format_traceback()) break + except MaxDownloadsReached: + self.to_screen(u'[info] Maximum number of downloaded files reached.') + raise except Exception as e: if self.params.get('ignoreerrors', False): self.trouble(u'ERROR: ' + compat_str(e), tb=compat_str(traceback.format_exc()))