~matthiasbeyer/butido

585f07d9026c9ba60d8a27f9d64ab0c38e8f26c6 — Matthias Beyer 2 years ago 0775fe0
Fix: Add missing closing paren

Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
1 files changed, 1 insertions(+), 1 deletions(-)

M src/commands/source/download.rs
M src/commands/source/download.rs => src/commands/source/download.rs +1 -1
@@ 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,