summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-12-02 14:18:37 +0100
committerMatthias Beyer <matthias.beyer@atos.net>2021-12-02 14:23:53 +0100
commit585f07d9026c9ba60d8a27f9d64ab0c38e8f26c6 (patch)
treed0d928a054838c3cd38822f8b588ce8fa644b9fb
parent0775fe01a924386d8a990bf5f53721686904cf08 (diff)
Fix: Add missing closing paren
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
-rw-r--r--src/commands/source/download.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/source/download.rs b/src/commands/source/download.rs
index a49d71f..f9ebd42 100644
--- a/src/commands/source/download.rs
+++ b/src/commands/source/download.rs
@@ -84,7 +84,7 @@ impl ProgressWrapper {
async fn set_message(&self) {
let bar = self.bar.lock().await;
- bar.set_message(format!("Downloading ({current_bytes}/{sum_bytes} bytes, {dlfinished}/{dlsum} downloads finished",
+ bar.set_message(format!("Downloading ({current_bytes}/{sum_bytes} bytes, {dlfinished}/{dlsum} downloads finished)",
current_bytes = self.current_bytes,
sum_bytes = self.sum_bytes,
dlfinished = self.finished_downloads,