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
This commit is contained in:
Damir Shamanaev 2021-01-22 14:56:05 +03:00 committed by gluaxspeed
parent c6abb26ffe
commit f9c4af4ba3

View File

@ -84,6 +84,7 @@ fn main() -> Result<(), CLIError> {
Updater::print_cli();
help.print_help()?;
println!();
Ok(())
}
}