Fix Unicode encoding issue

Closes #108.
This commit is contained in:
Kim Silkebækken 2013-01-23 07:24:33 +01:00
parent 2a9edc19ca
commit da6dea74a9
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ def weather(unit='c', location_query=None):
'highlight_group': ['weather_condition_' + icon, 'weather_condition', 'weather'], 'highlight_group': ['weather_condition_' + icon, 'weather_condition', 'weather'],
}, },
{ {
'contents': '{0}°{1}'.format(condition['temp'], unit.upper()), 'contents': u'{0}°{1}'.format(condition['temp'], unit.upper()),
'highlight_group': ['weather_temp_cold' if int(condition['temp']) < 0 else 'weather_temp_hot', 'weather_temp', 'weather'], 'highlight_group': ['weather_temp_cold' if int(condition['temp']) < 0 else 'weather_temp_hot', 'weather_temp', 'weather'],
'draw_divider': False, 'draw_divider': False,
}, },