Changed the order of __init__s (yeah, I'm a dork).

This commit is contained in:
Jeremy Fincher 2003-04-22 11:24:57 +00:00
parent 6eacfb6c26
commit 5045894dcc
1 changed files with 1 additions and 1 deletions

View File

@ -58,8 +58,8 @@ frownre = re.compile('|'.join(map(re.escape, frowns)))
class ChannelStats(callbacks.Privmsg, ChannelDBHandler):
def __init__(self):
callbacks.Privmsg.__init__(self)
ChannelDBHandler.__init__(self)
callbacks.Privmsg.__init__(self)
def makeDb(self, filename):
if os.path.exists(filename):