From e6925cc5be62b616c9720d62a571b685c56864f9 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Wed, 12 Sep 2018 22:10:14 -0700 Subject: [PATCH] config: fix linter error --- config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 431488f69..f39099e15 100644 --- a/config.go +++ b/config.go @@ -350,9 +350,9 @@ func loadConfig() (*config, error) { // file doesn't exist which is OK. if _, ok := err.(*flags.IniError); ok { return nil, err - } else { - configFileError = err } + + configFileError = err } // Finally, parse the remaining command line options again to ensure