fix: remove whitespace when printing new key

This commit is contained in:
Johan Siebens
2022-06-06 12:34:41 +02:00
parent 9d29644941
commit 1715eb681d
+1 -5
View File
@@ -14,11 +14,7 @@ func keyCommand() *coral.Command {
command.RunE = func(command *coral.Command, args []string) error {
serverKey := key.NewServerKey()
fmt.Println()
fmt.Printf(" %s\n", serverKey.String())
fmt.Println()
fmt.Println(serverKey.String())
return nil
}