wunderground: Switch value used for weather condition name (#793)

`wxPhraseShort` ends up being abbreviated a lot. `wxPhraseMedium` is
equivalent to how wunderground worked before the recent rewrite. I just
ended up missing this during the rewrite.
This commit is contained in:
Erik Johnson 2020-10-04 10:31:09 -05:00 committed by GitHub
parent 992fb8cecb
commit bfbdc60b31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -206,7 +206,7 @@ class Wunderground(WeatherBackend):
pressure_trend = '+' if pressure_tendency == 'rising' else '-'
self.data['city'] = _find('v3-location-point:location:city', overview)
self.data['condition'] = _find('v3-wx-observations-current:wxPhraseShort', overview)
self.data['condition'] = _find('v3-wx-observations-current:wxPhraseMedium', overview)
self.data['observation_time'] = observation_time
self.data['current_temp'] = _find('units:temp', observation, '0')
self.data['low_temp'] = _find('units:tempLow', summary)