aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/help.py
diff options
context:
space:
mode:
authorAaron Bentley <aaron.bentley@utoronto.ca>2006-04-17 18:12:29 -0400
committerAaron Bentley <aaron.bentley@utoronto.ca>2006-04-17 18:12:29 -0400
commit9703aefca39996f954a91f5426f193c06661e69c (patch)
tree954468c51800a8066eb82593e68bc0a300d8ca30 /becommands/help.py
parent3b618f172c11d251f5f09874baa999b38e8ccc1f (diff)
parent4146eb30e62625216e49b103f7d32279730e5630 (diff)
downloadbugseverywhere-9703aefca39996f954a91f5426f193c06661e69c.tar.gz
Merge from other BE
Diffstat (limited to 'becommands/help.py')
-rw-r--r--becommands/help.py3
1 files changed, 2 insertions, 1 deletions
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])