Partial fix for bug #877601, I'll do the rest in class.

This commit is contained in:
Jeremy Fincher 2004-01-16 12:50:32 +00:00
parent 8164f5bb1f
commit 1e15c4ca75

View File

@ -433,7 +433,7 @@ class IrcObjectProxy(RichReplyMethods):
command = getattr(cb, name)
Privmsg.handled = True
if cb.threaded:
t = CommandThread(cb.callCommand, command,
t = CommandThread(target=self._callCommand, command,
self, self.msg, self.args)
t.start()
else: