Skip to content

Commit

Permalink
[currency] Remove debug prints
Browse files Browse the repository at this point in the history
embolalia committed Nov 13, 2013
1 parent 764d694 commit 41e038f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions currency.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 41e038f

Please sign in to comment.