Use localized forecast for openweathermap (#11770)

Use "detailed status" of forecast to get localized value
This commit is contained in:
Matthias Dötsch 2018-01-18 21:59:50 +01:00 committed by Fabian Affolter
parent 5c474ec42d
commit 46bbd78b23

View file

@ -176,7 +176,7 @@ class OpenWeatherMapSensor(Entity):
elif self.type == 'forecast':
if fc_data is None:
return
self._state = fc_data.get_weathers()[0].get_status()
self._state = fc_data.get_weathers()[0].get_detailed_status()
class WeatherData(object):