From fd5bb921bb7cdbec4cf3539adb4b35dfe63b8336 Mon Sep 17 00:00:00 2001 From: FireRogue Date: Sun, 30 Nov 2014 15:45:04 +0200 Subject: [PATCH] [currency] Correct typo on invalid currency --- currency.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/currency.py b/currency.py index 714d74456c..6d96fa91e8 100644 --- a/currency.py +++ b/currency.py @@ -75,11 +75,11 @@ def display(bot, amount, of, to): try: of_rate, of_name = get_rate(of) if not of_name: - bot.reply("Unkown currency: %s" % of) + bot.reply("Unknown currency: %s" % of) return to_rate, to_name = get_rate(to) if not to_name: - bot.reply("Unkown currency: %s" % to) + bot.reply("Unknown currency: %s" % to) return except Exception as e: raise