Skip to content

Commit 0da5580

Browse files
committed
OCD Edit
Flipped the order of the wind speed message to match with the others (All other messages are Enlgish/Metric, wind was Metric/English). This is probably a stupid edit, but it was really bothering me ;-;
1 parent 912ecb8 commit 0da5580

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

plugins/weather.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def weather(text, reply):
118118
weather_data['url'] = web.shorten(response["current_observation"]['ob_url'])
119119

120120
reply("{place} - \x02Current:\x02 {conditions}, {temp_f}F/{temp_c}C, {humidity}, "
121-
"Wind: {wind_kph}KPH/{wind_mph}MPH {wind_direction}, \x02Today:\x02 {today_conditions}, "
121+
"Wind: {wind_mph}MPH/{wind_kph}KPH {wind_direction}, \x02Today:\x02 {today_conditions}, "
122122
"High: {today_high_f}F/{today_high_c}C, Low: {today_low_f}F/{today_low_c}C. "
123123
"\x02Tomorrow:\x02 {tomorrow_conditions}, High: {tomorrow_high_f}F/{tomorrow_high_c}C, "
124-
"Low: {tomorrow_low_f}F/{tomorrow_low_c}C - {url}".format(**weather_data))
124+
"Low: {tomorrow_low_f}F/{tomorrow_low_c}C - {url}".format(**weather_data))

0 commit comments

Comments
 (0)