minor comment update following the recent register_handlers() change

This commit is contained in:
Brian S. Stephan 2010-07-30 18:54:57 -05:00
parent 594c4d297d
commit 5f29d12561
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class Module(object):
def register_handlers(self, server):
"""
Hook handler functions into the IRC library. This is called by __init__ and sets
up server.add_global_handlers. Classes inheriting from Module should implement this
up server.add_global_handlers. Classes inheriting from Module could implement this
and set up the appropriate handlers, e.g.:
server.add_global_handler('privmsg', self.on_privmsg)