diff options
author | 无闻 <u@gogs.io> | 2015-02-09 10:45:41 -0500 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2015-02-09 10:45:41 -0500 |
commit | 767bf82eabed0fede7bbdb5f5b1c75898c6ff00d (patch) | |
tree | cdea12b284619fde82114e77d1f87e1e1f191fd9 /models/publickey.go | |
parent | 6ed96b7a20b8b53ef958808cc414d59b72b7fa5c (diff) | |
parent | b7e26aa5e30360897ea51d49f6d977ac0562431d (diff) |
Merge pull request #923 from phsmit/fix_922
Fix #922
Diffstat (limited to 'models/publickey.go')
-rw-r--r-- | models/publickey.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/models/publickey.go b/models/publickey.go index b1c7b624..383b85b6 100644 --- a/models/publickey.go +++ b/models/publickey.go @@ -29,7 +29,7 @@ import ( const ( // "### autogenerated by gitgos, DO NOT EDIT\n" - _TPL_PUBLICK_KEY = `command="%s serv --config='%s' key-%d",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty %s` + "\n" + _TPL_PUBLICK_KEY = `command="%s serv key-%d --config='%s'",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty %s` + "\n" ) var ( @@ -98,7 +98,7 @@ func (k *PublicKey) OmitEmail() string { // GetAuthorizedString generates and returns formatted public key string for authorized_keys file. func (key *PublicKey) GetAuthorizedString() string { - return fmt.Sprintf(_TPL_PUBLICK_KEY, appPath, setting.CustomConf, key.Id, key.Content) + return fmt.Sprintf(_TPL_PUBLICK_KEY, appPath, key.Id, setting.CustomConf, key.Content) } var ( |