From 22155c2714c31cb0aaa703b6a2d5fd0a446b890a Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 8 Apr 2003 08:22:15 +0000 Subject: [PATCH] Fixed AttributeError in strsplit. --- plugins/Utilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Utilities.py b/plugins/Utilities.py index 4bfa1a3d2..ac6aeae2b 100644 --- a/plugins/Utilities.py +++ b/plugins/Utilities.py @@ -58,7 +58,7 @@ class Utilities(callbacks.Privmsg): (sep, text) = privmsgs.getArgs(args, needed=2) if sep == '': sep = None - irc.reply(msg, text.split(sep)) + irc.reply(msg, ' '.join(text.split(sep))) def echo(self, irc, msg, args): """takes any number of arguments