Reordered superclasses so the proper die() method is called.

This commit is contained in:
Jeremy Fincher 2003-11-11 11:45:44 +00:00
parent 0a3b05f1fb
commit fdde2759df
1 changed files with 2 additions and 2 deletions

View File

@ -59,9 +59,9 @@ frowns = (':|', ':-/', ':-\\', ':\\', ':/', ':(', ':-(', ':\'(')
smileyre = re.compile('|'.join(map(re.escape, smileys)))
frownre = re.compile('|'.join(map(re.escape, frowns)))
class ChannelDB(callbacks.Privmsg,
class ChannelDB(plugins.ChannelDBHandler, # Must be first (die).
plugins.Configurable,
plugins.ChannelDBHandler):
callbacks.Privmsg):
noIgnore = True
configurables = plugins.ConfigurableDictionary(
[('self-stats', plugins.ConfigurableTypes.bool, True,