Skip to content

Commit

Permalink
Update serv.go (go-gitea#7822)
Browse files Browse the repository at this point in the history
small semantics fix
"Hi there, user!" looks better than "Hi there: user!"
  • Loading branch information
clavinet authored and lunny committed Aug 11, 2019
1 parent 80d2c25 commit 8101d80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/serv.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8101d80

Please sign in to comment.