about summary refs log tree commit diff
path: root/youtube_dl/downloader
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-03-24 16:27:36 +0700
committerSergey M․ <dstftw@gmail.com>2018-03-24 16:35:15 +0700
commit2ea212628e0ffc0d66858817841643c4579c5d9d (patch)
tree74f893fdf01b0361ebe013ed0078e41db903ab6e /youtube_dl/downloader
parent80aa24609415af36ac30caa392e85f8c20349535 (diff)
downloadyoutube-dl-2ea212628e0ffc0d66858817841643c4579c5d9d.tar.gz
youtube-dl-2ea212628e0ffc0d66858817841643c4579c5d9d.tar.xz
youtube-dl-2ea212628e0ffc0d66858817841643c4579c5d9d.zip
[downloader/common] Improve progress reporting when no total bytes available
Diffstat (limited to 'youtube_dl/downloader')
-rw-r--r--youtube_dl/downloader/common.py5
1 files changed, 2 insertions, 3 deletions
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'