diff --git a/ircbot/plugin/weather.py b/ircbot/plugin/weather.py index 9604ae8..d38d3bc 100644 --- a/ircbot/plugin/weather.py +++ b/ircbot/plugin/weather.py @@ -21,7 +21,7 @@ def weather(bot, msg): def f2c(temp): - return int((temp - 32) * 5 / 9) + return (temp - 32) * 5 / 9 def deg_to_compass(deg):