Skip to content

Commit

Permalink
Add missing newline to invalid user message (#14167)
Browse files Browse the repository at this point in the history
Add newline missing from PR #14033.
  • Loading branch information
codingllama authored Jul 7, 2022
1 parent c64506c commit a22bbb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/auth/webauthncli/fido2_prompt.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,6 @@ func (p *DefaultPrompt) PromptCredential(creds []*Credential) (*Credential, erro
return creds[num-1], nil
}

fmt.Fprintf(p.out, "Invalid user choice: %q", numOrName)
fmt.Fprintf(p.out, "Invalid user choice: %q\n", numOrName)
}
}

0 comments on commit a22bbb0

Please sign in to comment.