Parcourir la source

fix a copy-paste error

Sven Czarnian il y a 3 ans
Parent
commit
b54f7dfc50
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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!')