From 6c6bdf52b37de6e536cc0899ddf289d4c2540de5 Mon Sep 17 00:00:00 2001 From: Paul Lecuq Date: Wed, 24 Jul 2019 00:36:37 +0200 Subject: [PATCH] updated default config file name --- weather.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weather.go b/weather.go index f4cff81..5322043 100644 --- a/weather.go +++ b/weather.go @@ -18,7 +18,7 @@ const kelvin = -273.15 func main() { - flag.StringVar(&configpath, "configfile", "common.ini", "config file to use with fuelprices section") + flag.StringVar(&configpath, "configfile", "weather.ini", "config file to use with fuelprices section") flag.Parse() err := GetConfig(configpath, &wc)