diff --git a/plugins/Utils.py b/plugins/Utils.py index a5139c5de..e215a04da 100644 --- a/plugins/Utils.py +++ b/plugins/Utils.py @@ -37,8 +37,12 @@ import callbacks class Utils(callbacks.Privmsg): def strjoin(self, irc, msg, args): " " - (sep, text) = privmsgs.getArgs(args, needed=2) - irc.reply(msg, sep.join(text.split())) + sep = args.pop(0) + irc.reply(msg, sep.join(args)) + def strconcat(self, irc, msg, args): + " " + (first, second) = privmsgs.getArgs(args, needed=2) + irc.reply(msg, first+second) Class = Utils