diff options
author | Sergey M <dstftw@gmail.com> | 2016-03-23 20:12:32 +0500 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2016-03-23 20:12:32 +0500 |
commit | 4333d56494a48929303ce306330ee3cded989d48 (patch) | |
tree | abc49c455024ed34760f89d344cadc12cbedc73c /youtube_dl/downloader/common.py | |
parent | 882c6992967914c245e086ddaacde9d595cd6ed9 (diff) | |
parent | 16a8b7986b88572aea12c0f80c499e6e8085f1cc (diff) |
Merge pull request #8898 from dstftw/fragment-retries
Add --fragment-retries option (Fixes #8466)
Diffstat (limited to 'youtube_dl/downloader/common.py')
-rw-r--r-- | youtube_dl/downloader/common.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/youtube_dl/downloader/common.py b/youtube_dl/downloader/common.py index f39db58f6..1dba9f49a 100644 --- a/youtube_dl/downloader/common.py +++ b/youtube_dl/downloader/common.py @@ -116,6 +116,10 @@ class FileDownloader(object): return '%10s' % ('%s/s' % format_bytes(speed)) @staticmethod + def format_retries(retries): + return 'inf' if retries == float('inf') else '%.0f' % retries + + @staticmethod def best_block_size(elapsed_time, bytes): new_min = max(bytes / 2.0, 1.0) new_max = min(max(bytes * 2.0, 1.0), 4194304) # Do not surpass 4 MB @@ -297,7 +301,9 @@ 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 %.0f)...' % (count, retries)) + self.to_screen( + '[download] Got server HTTP error. Retrying (attempt %d of %s)...' + % (count, self.format_retries(retries))) def report_file_already_downloaded(self, file_name): """Report file has already been fully downloaded.""" |