1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-11 06:21:00 +00:00

fix the go vet for go tip

This commit is contained in:
astaxie
2016-01-29 13:11:11 +08:00
parent 1bf52e8922
commit 0382146c60
2 changed files with 8 additions and 9 deletions

View File

@ -319,7 +319,7 @@ func LoadAppConfig(adapterName, configPath string) error {
}
if !utils.FileExists(absConfigPath) {
return fmt.Errorf("the target config file: %s don't exist!", configPath)
return fmt.Errorf("the target config file: %s don't exist", configPath)
}
if absConfigPath == appConfigPath {