From 4fb57f211a1a4257225a8e2ac8d298b0accb9f66 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 9 Mar 2005 07:27:16 +0000 Subject: [PATCH] Updated some docs in the plugins module. --- plugins/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/__init__.py b/plugins/__init__.py index 977883604..ab896915e 100644 --- a/plugins/__init__.py +++ b/plugins/__init__.py @@ -189,7 +189,7 @@ class ChannelDBHandler(object): class DbiChannelDB(object): """This just handles some of the general stuff for Channel DBI databases. - Check out plugins/Dunno.py for an example of how to use this.""" + Check out ChannelIdDatabasePlugin for an example of how to use this.""" def __init__(self, filename): self.filename = filename self.dbs = ircutils.IrcDict() @@ -218,8 +218,6 @@ class DbiChannelDB(object): return _getDbAndDispatcher -# XXX This should eventually be gotten rid of in favor of some dbi thing. At -# the very least, it ought to get an interface much closer to dbi.DB. class ChannelUserDictionary(UserDict.DictMixin): IdDict = dict def __init__(self):