summaryrefslogtreecommitdiffstats
path: root/ipfs-cli/src/command/add.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-cli/src/command/add.rs')
-rw-r--r--ipfs-cli/src/command/add.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipfs-cli/src/command/add.rs b/ipfs-cli/src/command/add.rs
index 0ff592d..40eeb3c 100644
--- a/ipfs-cli/src/command/add.rs
+++ b/ipfs-cli/src/command/add.rs
@@ -27,9 +27,9 @@ pub fn handle(core: &mut Core, client: &IpfsClient, args: &ArgMatches) {
let file = File::open(path).expect(EXPECTED_FILE);
let response = core.run(client.add(file)).expect(EXPECTED_API);
- println!("");
+ println!();
println!(" name : {}", response.name);
println!(" hash : {}", response.hash);
println!(" size : {}", response.size);
- println!("");
+ println!();
}