configure() should append 'load Dict' to onStart, not 'load Dictionary'

This commit is contained in:
James Vega 2003-11-17 01:27:21 +00:00
parent 4459b3ccf6
commit b6efb5c212
1 changed files with 1 additions and 1 deletions

View File

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