From af7f6397443d6699c86cfcaf8ddd4d905ac21533 Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Tue, 19 Jun 2018 16:18:51 -0700 Subject: [PATCH] Making copy and pasting from the cli easier --- app/cli/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/cli/main.go b/app/cli/main.go index 08a8ff4..cfcb2de 100644 --- a/app/cli/main.go +++ b/app/cli/main.go @@ -223,11 +223,11 @@ func main() { } case "contacts": for _, c := range app.Peer.Profile.Contacts { - fmt.Printf("Name: %v, Onion: %v, Trusted: %v\n", c.Name, c.Onion, c.Trusted) + fmt.Printf("Name: %v Onion: %v Trusted: %v\n", c.Name, c.Onion, c.Trusted) } case "groups": for gid, g := range app.Peer.Profile.Groups { - fmt.Printf("Group Id: %v, Owner: %v Accepted:%v \n", gid, g.Owner, g.Accepted) + fmt.Printf("Group Id: %v Owner: %v Accepted:%v \n", gid, g.Owner, g.Accepted) } case "trust": if len(commands) == 2 {