From c4b33005fdf06782bc80993bdc77238870217299 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 20 Feb 2018 17:46:50 +0100 Subject: [PATCH] Increase gap size --- bin/core/imag/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/core/imag/src/main.rs b/bin/core/imag/src/main.rs index 18820c4d..2bbf101d 100644 --- a/bin/core/imag/src/main.rs +++ b/bin/core/imag/src/main.rs @@ -198,7 +198,7 @@ fn main() { .map(|v| v.stdout) { Ok(s) => match String::from_utf8(s) { - Ok(s) => format!("{:10} -> {}", command, s), + Ok(s) => format!("{:15} -> {}", command, s), Err(e) => format!("UTF8 Error while working with output of imag{}: {:?}", command, e), }, Err(e) => format!("Failed calling imag-{} -> {:?}", command, e),