From a51deb2883d5f303092f92a8023e3d98701a118f Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 24 Sep 2003 08:35:22 +0000 Subject: [PATCH] Remove OwnerCommands from the list of plugins and made the output for configuring plugins a little bit nicer. --- scripts/supybot-wizard.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/scripts/supybot-wizard.py b/scripts/supybot-wizard.py index 69a9591d0..026836f71 100755 --- a/scripts/supybot-wizard.py +++ b/scripts/supybot-wizard.py @@ -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. ###