diff --git a/units.py b/units.py index c6a5883c6a..ff4c4a57a6 100644 --- a/units.py +++ b/units.py @@ -44,7 +44,7 @@ def temperature(bot, trigger): kelvin = c_to_k(celsius) fahrenheit = c_to_f(celsius) - bot.reply("%s°C = %s°F = %s°K" % (celsius, fahrenheit, kelvin)) + bot.reply("%s°C = %s°F = %sK" % (celsius, fahrenheit, kelvin)) @commands('length', 'distance') @example('.distance 3km')