From: Sergey M․ Date: Sat, 24 Mar 2018 09:27:36 +0000 (+0700) Subject: [downloader/common] Improve progress reporting when no total bytes available X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=commitdiff_plain;h=2ea212628e0ffc0d66858817841643c4579c5d9d [downloader/common] Improve progress reporting when no total bytes available --- diff --git a/youtube_dl/downloader/common.py b/youtube_dl/downloader/common.py index 7062eee8b..edd125ee2 100644 --- a/youtube_dl/downloader/common.py +++ b/youtube_dl/downloader/common.py @@ -249,11 +249,10 @@ class FileDownloader(object): if self.params.get('noprogress', False): self.to_screen('[download] Download completed') else: + msg_template = '100%%' if s.get('total_bytes') is not None: s['_total_bytes_str'] = format_bytes(s['total_bytes']) - msg_template = '100%% of %(_total_bytes_str)s' - else: - msg_template = 'Completed' + msg_template += ' of %(_total_bytes_str)s' if s.get('elapsed') is not None: s['_elapsed_str'] = self.format_seconds(s['elapsed']) msg_template += ' in %(_elapsed_str)s'