Browse Source

Merge pull request #2467 from pdan/patch-1

Fixed forgotten err variable assignment
Unknwon 8 years ago
parent
commit
4ae7e64e2a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/setting/setting.go

+ 1 - 1
modules/setting/setting.go

@@ -428,7 +428,7 @@ func NewContext() {
 		log.Fatal(4, "Fail to map Markdown settings: %v", err)
 	} else if err = Cfg.Section("git").MapTo(&Git); err != nil {
 		log.Fatal(4, "Fail to map Git settings: %v", err)
-	} else if Cfg.Section("cron").MapTo(&Cron); err != nil {
+	} else if err = Cfg.Section("cron").MapTo(&Cron); err != nil {
 		log.Fatal(4, "Fail to map Cron settings: %v", err)
 	}