]> source.dussan.org Git - gitea.git/commitdiff
Update serv.go (#7822)
authorclavinet <17836261+clavinet@users.noreply.github.com>
Sun, 11 Aug 2019 12:15:58 +0000 (14:15 +0200)
committerLunny Xiao <xiaolunwen@gmail.com>
Sun, 11 Aug 2019 12:15:58 +0000 (20:15 +0800)
small semantics fix
"Hi there, user!" looks better than "Hi there: user!"

cmd/serv.go

index 6409cb08765b7c64824c72fbaf8185e5a9708405..667c3a317a33c586e57e844378c46de42293da97 100644 (file)
@@ -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