From 838843e48cbb89234fe2b9d7d706738c9dba77cb Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 30 Mar 2015 23:24:41 -0700 Subject: [PATCH] command/auth: add newline so reading token doesn't output --- command/auth.go | 1 + 1 file changed, 1 insertion(+) diff --git a/command/auth.go b/command/auth.go index 015b5c95c8..9319876471 100644 --- a/command/auth.go +++ b/command/auth.go @@ -56,6 +56,7 @@ func (c *AuthCommand) Run(args []string) int { // No arguments given, read the token from user input fmt.Printf("Token (will be hidden): ") token, err = password.Read(os.Stdin) + fmt.Printf("\n") if err != nil { c.Ui.Error(fmt.Sprintf( "Error attempting to ask for token. The raw error message\n"+