Updated the comment in the templated configure.

This commit is contained in:
Jeremy Fincher 2004-01-27 20:05:08 +00:00
parent 78d4c39e1b
commit aabb617eb8

View File

@ -58,11 +58,11 @@ import privmsgs
import callbacks import callbacks
def configure(onStart): def configure(advanced):
# This will be called by setup.py to configure this module. onStart and # This will be called by setup.py to configure this module. Advanced is
# afterConnect are both lists. Append to onStart the commands you would # a bool that specifies whether the user identified himself as an advanced
# like to be run when the bot is started; append to afterConnect the # user or not. You should effect your configuration by manipulating the
# commands you would like to be run when the bot has finished connecting. # registry as appropriate.
from questions import expect, anything, something, yn from questions import expect, anything, something, yn
conf.registerPlugin(%r, True) conf.registerPlugin(%r, True)