Remove OwnerCommands from the list of plugins and made the output for configuring plugins a little bit nicer.

This commit is contained in:
Jeremy Fincher 2003-09-24 08:35:22 +00:00
parent 6928a3a54f
commit a51deb2883
1 changed files with 2 additions and 7 deletions

View File

@ -22,6 +22,8 @@ def getPlugins():
for filename in filenames:
if filename.endswith('.py') and filename[0].isupper():
plugins.append(os.path.splitext(filename)[0])
if 'OwnerCommands' in plugins:
plugins.remove('OwnerCommands')
plugins.sort()
return plugins
@ -441,13 +443,6 @@ if __name__ == '__main__':
a floating-point number.""")
throttleTime = None
###
# This is close to the end.
###