From b54f7dfc50ca05e3524c740a0fa37a15ec90eaf1 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Sun, 5 Sep 2021 19:29:21 +0200 Subject: [PATCH] fix a copy-paste error --- aman/config/Weather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aman/config/Weather.py b/aman/config/Weather.py index f2aa2d0..7a8442e 100644 --- a/aman/config/Weather.py +++ b/aman/config/Weather.py @@ -12,7 +12,7 @@ class Weather(): # search the required sections for key in config: if 'provider' == key: - self.Provider = config['address'] + self.Provider = config['provider'] if self.Provider is None: sys.stderr.write('No weather-provider configuration found!')