command/unseal: print newline after reading password

This commit is contained in:
Mitchell Hashimoto
2015-04-06 09:34:08 -07:00
parent 3e4a8a926e
commit cc202f9208

View File

@@ -37,6 +37,7 @@ func (c *UnsealCommand) Run(args []string) int {
if value == "" {
fmt.Printf("Key (will be hidden): ")
value, err = password.Read(os.Stdin)
fmt.Printf("\n")
if err != nil {
c.Ui.Error(fmt.Sprintf(
"Error attempting to ask for password. The raw error message\n"+