Unbreak invalidCommands.

This commit is contained in:
James Vega 2005-04-20 23:06:50 +00:00
parent 948571c17f
commit e7e72d4484
1 changed files with 8 additions and 8 deletions

View File

@ -666,7 +666,7 @@ class NestedCommandsIrcProxy(ReplyIrcProxy):
return
if threaded:
name = 'Thread #%s (for invalidCommands)' % world.threadsSpawned
t = world.SupyThread(callInvalidCommands, name=name)
t = world.SupyThread(target=callInvalidCommands, name=name)
t.setDaemon(True)
t.start()
else: