Default displaying of usage examples to False until we put the example strings

back in
This commit is contained in:
James Vega 2003-11-06 20:49:37 +00:00
parent 5a6f3ee7bb
commit 12c52807f8

View File

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