diff options
author | Unknwon <u@gogs.io> | 2017-02-15 22:29:31 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-02-15 22:29:31 -0500 |
commit | 3137665e6eb2626e7f05b083ce14bbbcd78f41b3 (patch) | |
tree | e69b138ff0062b4799cbced91012e1859108b99f /modules/setting | |
parent | f35bd3400206bf4c1b19050dba99fd3dc5d6edc4 (diff) |
Simplify description
Diffstat (limited to 'modules/setting')
-rw-r--r-- | modules/setting/setting.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 3b1b7250..f42d26e3 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -384,7 +384,7 @@ func NewContext() { forcePathSeparator(LogRootPath) sec := Cfg.Section("server") - AppName = Cfg.Section("").Key("APP_NAME").MustString("Gogs: Go Git Service") + AppName = Cfg.Section("").Key("APP_NAME").MustString("Gogs") AppUrl = sec.Key("ROOT_URL").MustString("http://localhost:3000/") if AppUrl[len(AppUrl)-1] != '/' { AppUrl += "/" |