1
0
mirror of https://github.com/kubernetes-sigs/descheduler.git synced 2026-01-28 06:29:29 +01:00

bump(*): k8s to 1.20-rc.0

This commit is contained in:
Mike Dame
2020-12-02 14:40:50 -05:00
parent 922c4f6a63
commit 251f44e568
368 changed files with 45286 additions and 13301 deletions

View File

@@ -765,7 +765,7 @@ func unescape(s string) (ch string, tail string, err error) {
if i > utf8.MaxRune {
return "", "", fmt.Errorf(`\%c%s is not a valid Unicode code point`, r, ss)
}
return string(i), s, nil
return string(rune(i)), s, nil
}
return "", "", fmt.Errorf(`unknown escape \%c`, r)
}