From 69300422c6825af80574545b11d7565aa8f38ee3 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 5 Dec 2009 00:57:43 -0500 Subject: Fix cmdutil.help() calls in be to use args not sys.argv. sys.argv won't work if there are any options in the be call, e.g. be -d DIR diff --- be | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be b/be index 8fe7dca..c5c372f 100755 --- a/be +++ b/be @@ -64,7 +64,7 @@ try: raise cmdutil.UsageError, "must supply a command" sys.exit(cmdutil.execute(args[0], args[1:])) except cmdutil.GetHelp: - print cmdutil.help(sys.argv[1]) + print cmdutil.help(args[0]) sys.exit(0) except cmdutil.GetCompletions, e: print '\n'.join(e.completions) @@ -78,7 +78,7 @@ except cmdutil.UsageError, e: print cmdutil.help(parser=parser) else: print "\nArgs:", args - print cmdutil.help(sys.argv[1]) + print cmdutil.help(args[0]) sys.exit(1) except cmdutil.UserError, e: print "ERROR:" -- cgit