From 416a177e51cd0e2e34806060dbe1ba5ea3d7dd70 Mon Sep 17 00:00:00 2001 From: James Vega Date: Sat, 7 Feb 2004 20:51:30 +0000 Subject: [PATCH] numbers -> integers --- plugins/Math.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Math.py b/plugins/Math.py index 012c54c16..5b130c8ab 100644 --- a/plugins/Math.py +++ b/plugins/Math.py @@ -79,7 +79,7 @@ class Math(callbacks.Privmsg): if not ((2 <= frm <= 36) and (2 <= to <= 36)): raise ValueError except ValueError: - irc.error('Bases must be numbers between 2 and 36.') + irc.error('Bases must be integers between 2 and 36.') return try: irc.reply(self._convertBaseToBase(number, to, frm))