diff --git a/plugins/Infobot.py b/plugins/Infobot.py index 3b115cefb..b6b7c531f 100755 --- a/plugins/Infobot.py +++ b/plugins/Infobot.py @@ -30,7 +30,7 @@ ### """ -Add the module docstring here. This will be used by the setup.py script. +A plugin that tries to emulate Infobot somewhat faithfully. """ from baseplugin import * @@ -47,6 +47,10 @@ import callbacks dbfilename = os.path.join(conf.dataDir, 'Infobot.db') +def configure(onStart, afterConnect, advanced): + from questions import expect, anything, something, yn + onStart.append('load Infobot') + def makeDb(filename): if os.path.exists(filename): return sqlite.connect(filename)