Added docstring and configure function.

This commit is contained in:
Jeremy Fincher 2003-08-23 05:55:20 +00:00
parent bdd66dbd5e
commit 3fe81ebdcb
1 changed files with 5 additions and 1 deletions

View File

@ -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)