From b6efb5c212907ea675cc9679b5205bc01da546e5 Mon Sep 17 00:00:00 2001 From: James Vega Date: Mon, 17 Nov 2003 01:27:21 +0000 Subject: [PATCH] configure() should append 'load Dict' to onStart, not 'load Dictionary' --- plugins/Dict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Dict.py b/plugins/Dict.py index 47ce8d1ac..1a8a40a08 100644 --- a/plugins/Dict.py +++ b/plugins/Dict.py @@ -56,7 +56,7 @@ def configure(onStart, afterConnect, advanced): # like to be run when the bot is started; append to afterConnect the # commands you would like to be run when the bot has finished connecting. from questions import expect, anything, something, yn - onStart.append('load Dictionary') + onStart.append('load Dict') print 'The default dictd server is dict.org.' if yn('Would you like to specify a dictd server?') == 'y': server = something('What server?')