diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2016-01-22 14:49:17 +0100 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2016-01-22 14:49:17 +0100 | 
| commit | 32d77eeb04657529b118159db4d23fd671fe04c7 (patch) | |
| tree | 297628078b684c8fda6cc58539cd039bd943e3eb /youtube_dl/downloader/common.py | |
| parent | 032f2326268ae810343c5a083e048f361f7a2074 (diff) | |
[downloader/common] report_retry: Don't crash when retries is infinite (fixes #8299)
Diffstat (limited to 'youtube_dl/downloader/common.py')
| -rw-r--r-- | youtube_dl/downloader/common.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/downloader/common.py b/youtube_dl/downloader/common.py index beae8c4d0..fc7521598 100644 --- a/youtube_dl/downloader/common.py +++ b/youtube_dl/downloader/common.py @@ -295,7 +295,7 @@ class FileDownloader(object):      def report_retry(self, count, retries):          """Report retry in case of HTTP error 5xx""" -        self.to_screen('[download] Got server HTTP error. Retrying (attempt %d of %d)...' % (count, retries)) +        self.to_screen('[download] Got server HTTP error. Retrying (attempt %d of %.0f)...' % (count, retries))      def report_file_already_downloaded(self, file_name):          """Report file has already been fully downloaded.""" | 
