[pybot-commits] CVS: pybot/pybot runner.py,1.3,1.4
Brought to you by:
niemeyer
From: Gustavo N. <nie...@us...> - 2003-05-12 21:31:12
|
Update of /cvsroot/pybot/pybot/pybot In directory sc8-pr-cvs1:/tmp/cvs-serv12954/pybot Modified Files: runner.py Log Message: Added userdata to default loaded modules. Index: runner.py =================================================================== RCS file: /cvsroot/pybot/pybot/pybot/runner.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** runner.py 12 May 2003 20:42:20 -0000 1.3 --- runner.py 12 May 2003 21:31:09 -0000 1.4 *************** *** 86,91 **** # Load modules which are part of the basic infrastructure ! pybot.modls.loadlist(["help", "options", "timer", "modulecontrol", ! "permission", "pong", "servercontrol"]) ret = pybot.main.loop() sys.exit(ret) --- 86,100 ---- # Load modules which are part of the basic infrastructure ! defaultlist = [ ! "help", ! "options", ! "timer", ! "modulecontrol", ! "permission", ! "pong", ! "servercontrol", ! "userdata", ! ] ! pybot.modls.loadlist(defaultlist) ret = pybot.main.loop() sys.exit(ret) |