Skip to content

Commit

Permalink
Add missing newline to invalid user message
Browse files Browse the repository at this point in the history
  • Loading branch information
codingllama authored and github-actions committed Jul 7, 2022
1 parent 9e3912e commit c847e42
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 c847e42

Please sign in to comment.