Skip to content

Commit

Permalink
[weather] capitalize humidity in output
Browse files Browse the repository at this point in the history
  • Loading branch information
lramati committed Sep 5, 2014
1 parent 503bdf1 commit 2d8b2b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weather.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def get_humidity(parsed):
humidity = parsed['feed']['yweather_atmosphere']['humidity']
except (KeyError, ValueError):
return 'unknown'
return "humidity: %s%%" % humidity
return "Humidity: %s%%" % humidity


def get_wind(parsed):
Expand Down

0 comments on commit 2d8b2b1

Please sign in to comment.