From fd952b83967b565ec28155f037d06e9f7b01765f Mon Sep 17 00:00:00 2001 From: Damir Shamanaev Date: Fri, 22 Jan 2021 14:56:05 +0300 Subject: [PATCH] Adds empty line for help command in leo CLI - clap 2.X has an issue with adding empty line in the end - proper fixing of this problem should be by updating to V3 --- leo/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/leo/main.rs b/leo/main.rs index 7c8c124904..45c58ebe9f 100644 --- a/leo/main.rs +++ b/leo/main.rs @@ -84,6 +84,7 @@ fn main() -> Result<(), CLIError> { Updater::print_cli(); help.print_help()?; + println!(); Ok(()) } }