From 93e9fa3180a8a7b6d707685694e78622953d99a0 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 10 Dec 2004 08:12:18 +0000 Subject: [PATCH] Change assert message. --- src/callbacks.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/callbacks.py b/src/callbacks.py index 12a3b9aaf..39be0b780 100644 --- a/src/callbacks.py +++ b/src/callbacks.py @@ -542,9 +542,7 @@ class IrcObjectProxy(RichReplyMethods): "A proxy object to allow proper nested of commands (even threaded ones)." def __init__(self, irc, msg, args, nested=0): log.verbose('IrcObjectProxy.__init__: %s' % args) - assert isinstance(args, list), \ - 'Args should be a list. Don\'t call this with a string, it\s' \ - 'baaad.' + assert isinstance(args, list), 'Args should be a list, not a string.' self.irc = irc self.msg = msg self.nested = nested