Changed dictionaries in IrcState to use ircutils.IrcDict.

This commit is contained in:
Jeremy Fincher 2003-04-11 20:46:23 +00:00
parent d596752a5f
commit 019a648617

View File

@ -171,8 +171,8 @@ class IrcState(object):
def reset(self):
self.history = MaxLengthQueue(conf.maxHistory)
self.nicksToHostmasks = {}
self.channels = {}
self.nicksToHostmasks = ircutils.IrcDict()
self.channels = ircutils.IrcDict()
def __getstate__(self):
d = {}