From: Aaron Bentley Date: Mon, 17 Apr 2006 21:00:26 +0000 (-0400) Subject: Fix help printing (Lee Braiden) X-Git-Tag: 1.0.0~186^2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c3d70d6f4b36b7b13ee3d9d4dba6b1f23ad60a52;p=be.git Fix help printing (Lee Braiden) --- diff --git a/be b/be index 8ad6a98..6d1e96c 100755 --- a/be +++ b/be @@ -48,7 +48,7 @@ Unimplemented becommands if len(sys.argv) == 1 or sys.argv[1] in ('--help', '-h'): - print_command_list() + cmdutil.print_command_list() else: try: try: diff --git a/becommands/help.py b/becommands/help.py index 1402a2a..aa4aa64 100644 --- a/becommands/help.py +++ b/becommands/help.py @@ -16,6 +16,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Print help for given subcommand""" from libbe import bugdir, cmdutil, names, utility + def execute(args): """ Print help of specified command. @@ -24,7 +25,7 @@ def execute(args): if len(args) > 1: raise cmdutil.UserError("Too many arguments.") if len(args) == 0: - print_command_list() + cmdutil.print_command_list() else: try: print cmdutil.help(args[0])