From 5c0f24f5677958a224f4454e9ae86e3c01a1dd50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20M=2E=20Bezerra?= Date: Tue, 2 Nov 2021 06:30:59 -0300 Subject: [PATCH] Change alignment of error message replacement suggestion --- src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.rs b/src/commands.rs index be9cea1..8159d17 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -79,7 +79,7 @@ pub fn run(args: Opts, question_policy: QuestionPolicy) -> crate::Result<()> { .detail("The only supported formats that archive files into an archive are .tar and .zip.") .hint(format!("Try inserting '.tar' or '.zip' before '{}'.", &formats[0])) .hint(format!("From: {}", output_path)) - .hint(format!(" To : {}", suggested_output_path)); + .hint(format!("To: {}", suggested_output_path)); return Err(error.into()); }