Changed OverflowError message.

This commit is contained in:
Jeremy Fincher 2003-03-31 10:34:22 +00:00
parent 880e004abb
commit bfc6533d22

View File

@ -370,7 +370,7 @@ class FunCommands(callbacks.Privmsg):
else:
irc.reply(msg, '%s + %si' % (real, imag))
except OverflowError:
irc.reply(msg, 'I don\'t have that many fingers and toes!')
irc.reply(msg, 'Go get scanez, this is a *real* math problem!')
except Exception, e:
irc.reply(msg, debug.exnToString(e))