From bea9d55da6df19777b00213e7b5303237910e97c Mon Sep 17 00:00:00 2001
From: Avelino <thiago@avelino.xxx>
Date: Fri, 2 Dec 2016 03:23:37 -0200
Subject: [PATCH] Fixed project name on setting module key APP_NAME

---
 modules/setting/setting.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/setting/setting.go b/modules/setting/setting.go
index 2ee8ce94d7..7e3bfb47ba 100644
--- a/modules/setting/setting.go
+++ b/modules/setting/setting.go
@@ -393,7 +393,7 @@ please consider changing to GITEA_CUSTOM`)
 	forcePathSeparator(LogRootPath)
 
 	sec := Cfg.Section("server")
-	AppName = Cfg.Section("").Key("APP_NAME").MustString("Gogs: Go Git Service")
+	AppName = Cfg.Section("").Key("APP_NAME").MustString("Gitea: Git with a cup of tea")
 	AppURL = sec.Key("ROOT_URL").MustString("http://localhost:3000/")
 	if AppURL[len(AppURL)-1] != '/' {
 		AppURL += "/"