1
0
Fork 0
forked from forgejo/forgejo

refactor: Remove unnecessary type conversions (#772)

This commit is contained in:
Bo-Yi Wu 2017-01-27 23:03:32 +08:00 committed by Lunny Xiao
parent 4faf097fb9
commit 25663b5816
4 changed files with 5 additions and 5 deletions

View file

@ -219,7 +219,7 @@ func SSHKeyGenParsePublicKey(key string) (string, int, error) {
func SSHNativeParsePublicKey(keyLine string) (string, int, error) {
fields := strings.Fields(keyLine)
if len(fields) < 2 {
return "", 0, fmt.Errorf("not enough fields in public key line: %s", string(keyLine))
return "", 0, fmt.Errorf("not enough fields in public key line: %s", keyLine)
}
raw, err := base64.StdEncoding.DecodeString(fields[1])