From 41e038f10803e10d46c13a93607fe7930d964912 Mon Sep 17 00:00:00 2001 From: Edward Powell Date: Tue, 12 Nov 2013 21:43:17 -0500 Subject: [PATCH] [currency] Remove debug prints --- currency.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/currency.py b/currency.py index 477ce8ffb0..e5a554d4e8 100644 --- a/currency.py +++ b/currency.py @@ -52,7 +52,6 @@ def exchange(bot, trigger): return NOLIMIT amount, of, to = match.groups() - print amount, of, to try: amount = float(amount) except: @@ -62,9 +61,7 @@ def exchange(bot, trigger): bot.reply("Zero is zero, no matter what country you're in.") try: of_rate, of_name = get_rate(of) - print of_rate to_rate, to_name = get_rate(to) - print to_rate except Exception as e: bot.reply("Something went wrong while I was getting the exchange rate.") return NOLIMIT