Fix an exception. There may be a better way to fix this (jemfinch), but

this will at least stop the exceptions.
This commit is contained in:
James Vega 2004-12-29 14:20:00 +00:00
parent 6d2a52613b
commit 82a055c466
1 changed files with 3 additions and 2 deletions

View File

@ -50,9 +50,10 @@ class RawLogger(irclib.IrcCallback):
world.flushers.append(self._flush)
def die(self):
world.flushers.remove(self._flush)
if self._flush in world.flushers:
world.flushers.remove(self._flush)
self.fd.close()
def inFilter(self, irc, msg):
self.fd.write(str(msg))
return msg