diff options
author | Unknwon <u@gogs.io> | 2015-02-28 22:24:53 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-02-28 22:24:53 -0500 |
commit | d446be9f5f1e4584c329dc418a9699960cb431e1 (patch) | |
tree | 02f7976cdbfe2848b0e1eed5cfd1580cf32ca202 /models/publickey.go | |
parent | 8d17ff8ce7a563be7abd54573cb91894a2bfdab6 (diff) | |
download | gitea-d446be9f5f1e4584c329dc418a9699960cb431e1.tar.gz gitea-d446be9f5f1e4584c329dc418a9699960cb431e1.zip |
models: mirror fix on #964
Diffstat (limited to 'models/publickey.go')
-rw-r--r-- | models/publickey.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/models/publickey.go b/models/publickey.go index 383b85b634..6bec1139b8 100644 --- a/models/publickey.go +++ b/models/publickey.go @@ -130,7 +130,6 @@ func extractTypeFromBase64Key(key string) (string, error) { // Parse any key string in openssh or ssh2 format to clean openssh string (rfc4253) func ParseKeyString(content string) (string, error) { - // Transform all legal line endings to a single "\n" s := strings.Replace(strings.Replace(strings.TrimSpace(content), "\r\n", "\n", -1), "\r", "\n", -1) |