Another go at fixing the looping bug.

This commit is contained in:
Jeremy Fincher 2003-04-05 11:25:38 +00:00
parent a50643c025
commit b8f2bbb1bb

View File

@ -88,7 +88,7 @@ class AsyncoreDriver(asynchat.async_chat, object):
def writable(self):
#debug.methodNamePrintf(self, 'writable')
while True:
while self.connected:
m = self.irc.takeMsg()
if m:
self.push(str(m))