From 889f1d9c3501a6977609dfefad24caa4fb7a19aa Mon Sep 17 00:00:00 2001 From: figsoda Date: Thu, 13 Oct 2022 11:51:35 -0400 Subject: [PATCH] fix typo --- src/progress.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/progress.rs b/src/progress.rs index 5e17c12..767aa02 100644 --- a/src/progress.rs +++ b/src/progress.rs @@ -24,7 +24,7 @@ impl OutputLine for Progress { } fn output_line_info(&mut self, args: Arguments) { - self.bar.set_message(format!("{}[INFO]{}{args}", *YELLOW, *RESET)); + self.bar.set_message(format!("{}[INFO]{} {args}", *YELLOW, *RESET)); } }