From 5f29d1256139f94d6f3ff0012dce7ca6e36f083d Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Fri, 30 Jul 2010 18:54:57 -0500 Subject: [PATCH] minor comment update following the recent register_handlers() change --- Module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Module.py b/Module.py index 853c977..1cd39c0 100644 --- a/Module.py +++ b/Module.py @@ -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)