diff options
author | clavinet <17836261+clavinet@users.noreply.github.com> | 2019-08-11 14:15:58 +0200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-08-11 20:15:58 +0800 |
commit | 8101d803e61bf7f64c5e19b5a5d1f4dd9e81892a (patch) | |
tree | 3114c1c7659e127c0cc640ff367262ea1e99ce45 /cmd | |
parent | 80d2c2575b78eb5ea7193b9fe98d7c3ad6409605 (diff) | |
download | gitea-8101d803e61bf7f64c5e19b5a5d1f4dd9e81892a.tar.gz gitea-8101d803e61bf7f64c5e19b5a5d1f4dd9e81892a.zip |
Update serv.go (#7822)
small semantics fix
"Hi there, user!" looks better than "Hi there: user!"
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/serv.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/serv.go b/cmd/serv.go index 6409cb0876..667c3a317a 100644 --- a/cmd/serv.go +++ b/cmd/serv.go @@ -109,7 +109,7 @@ func runServ(c *cli.Context) error { if key.Type == models.KeyTypeDeploy { println("Hi there! You've successfully authenticated with the deploy key named " + key.Name + ", but Gitea does not provide shell access.") } else { - println("Hi there: " + user.Name + "! You've successfully authenticated with the key named " + key.Name + ", but Gitea does not provide shell access.") + println("Hi there, " + user.Name + "! You've successfully authenticated with the key named " + key.Name + ", but Gitea does not provide shell access.") } println("If this is unexpected, please log in with password and setup Gitea under another user.") return nil |