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 {