diff --git a/plugins/Weather.py b/plugins/Weather.py index b639f5122..6b49da73e 100644 --- a/plugins/Weather.py +++ b/plugins/Weather.py @@ -270,6 +270,7 @@ class Weather(callbacks.Privmsg): index = ' (Heat Index: %s)' % heat if temp and conds and city and state: conds = conds.replace('Tsra', 'Thunderstorms') + conds = conds.replace('Ts', 'Thunderstorms') s = 'The current temperature at %s, %s is %s%s. Conditions: %s.'% \ (city, state, temp, index, conds) irc.reply(s)