From 49f8902961b35a32c0fab005778ee0cbb5ea020e Mon Sep 17 00:00:00 2001 From: Jang Rush Date: Mon, 22 Apr 2019 09:57:08 +0800 Subject: [PATCH] Fix: typo in initial config file (#166) --- config/initial.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/initial.go b/config/initial.go index fe13c66d..8f198b7a 100644 --- a/config/initial.go +++ b/config/initial.go @@ -65,7 +65,7 @@ func Init(dir string) error { // initial config.yml if _, err := os.Stat(C.Path.Config()); os.IsNotExist(err) { - log.Info("Can't find config, create a empty file") + log.Info("Can't find config, create an empty file") os.OpenFile(C.Path.Config(), os.O_CREATE|os.O_WRONLY, 0644) }