summaryrefslogtreecommitdiffstats
path: root/ipfs-cli/src/command/commands.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-cli/src/command/commands.rs')
-rw-r--r--ipfs-cli/src/command/commands.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipfs-cli/src/command/commands.rs b/ipfs-cli/src/command/commands.rs
index 481b5a0..05f787c 100644
--- a/ipfs-cli/src/command/commands.rs
+++ b/ipfs-cli/src/command/commands.rs
@@ -41,7 +41,7 @@ fn recursive_print_commands(cmd: CommandsResponse, stack: &mut Vec<String>) {
pub fn handle(core: &mut Core, client: &IpfsClient) {
let commands = core.run(client.commands()).expect(EXPECTED_API);
- println!("");
+ println!();
recursive_print_commands(commands, &mut Vec::new());
- println!("");
+ println!();
}