cast bytes to string before printing

This commit is contained in:
Ethan Frey 2017-04-03 13:28:14 +02:00
parent 2bf2d00ce5
commit 146ca88f2c
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ func cmdNewKey(c *cli.Context) error {
if err != nil {
return err
}
fmt.Println(keyJSON)
fmt.Println(string(keyJSON))
return nil
}