From 12c52807f85b5d8f8411fef084482f92f978fbd9 Mon Sep 17 00:00:00 2001 From: James Vega Date: Thu, 6 Nov 2003 20:49:37 +0000 Subject: [PATCH] Default displaying of usage examples to False until we put the example strings back in --- scripts/supybot-wizard | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/supybot-wizard b/scripts/supybot-wizard index 4b0252157..218b568a1 100755 --- a/scripts/supybot-wizard +++ b/scripts/supybot-wizard @@ -373,8 +373,10 @@ def main(): bot. Before you have to make a decision, of course, you'll be able to see a short description of the plugin and, if you choose, an example session with the plugin. Let's begin.""") - showUsage = yn('Would you like the option of seeing usage examples?') \ - =='y' + # until we get example strings again, this will default to false + #showUsage =yn('Would you like the option of seeing usage examples?') \ + # =='y' + showUsage = False name = expect('What plugin would you like to look at?', plugins) while name: module = loadPlugin(name)