Fixed bug in supybot-wizard; exception was being raised when modules with no configure function were added.

This commit is contained in:
Jeremy Fincher 2003-10-08 20:52:38 +00:00
parent 8eaf73abf3
commit d1bc7d462a
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ def configurePlugin(module, onStart, afterConnect, advanced):
print # Blank line :)
myPrint("""Done!""")
else:
onStart.append('load %s' % name)
onStart.append('load %s' % module.__name__)
def clearLoadedPlugins(onStart, plugins):
for s in onStart: