From 1e15c4ca75f51c75373b93e6760a10fa8faf302f Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 16 Jan 2004 12:50:32 +0000 Subject: [PATCH] Partial fix for bug #877601, I'll do the rest in class. --- src/callbacks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/callbacks.py b/src/callbacks.py index be7924dd3..470fca3a2 100644 --- a/src/callbacks.py +++ b/src/callbacks.py @@ -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: