Skip to content

Commit

Permalink
Merge pull request #107 from Versent/fix_mfa_prompt
Browse files Browse the repository at this point in the history
fix(Prompt) Removed extra \n which broke the output.
  • Loading branch information
wolfeidau authored Dec 10, 2017
2 parents 33b66fb + e1436d2 commit 1ab4061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/prompter/prompter.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func NewCli() Prompter {

// RequestSecurityCode request a security code to be entered by the user
func (cli *CliPrompter) RequestSecurityCode(pattern string) string {
return prompt.StringRequired("\nSecurity Token [%s]\n", pattern)
return prompt.StringRequired("\nSecurity Token [%s]", pattern)
}

// Choice given the choice return the option selected
Expand Down

0 comments on commit 1ab4061

Please sign in to comment.