From c2069cae2b2f710e53ea21a89b31d3dc18ec494a Mon Sep 17 00:00:00 2001 From: Ben Toews Date: Wed, 28 Nov 2018 14:31:55 -0700 Subject: [PATCH] separate listed identities with newlines instead of em dashes --- list_keys_command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/list_keys_command.go b/list_keys_command.go index 58555b9..a8369a4 100644 --- a/list_keys_command.go +++ b/list_keys_command.go @@ -11,7 +11,7 @@ import ( func commandListKeys() error { for j, ident := range idents { if j > 0 { - fmt.Println("————————————————————") + fmt.Print("\n") } cert, err := ident.Certificate()