Browse Source

fix a copy-paste error

Sven Czarnian 3 years ago
parent
commit
b54f7dfc50
1 changed files with 1 additions and 1 deletions
  1. 1 1
      aman/config/Weather.py

+ 1 - 1
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!')