aboutsummaryrefslogtreecommitdiffstats
path: root/becommands
diff options
context:
space:
mode:
Diffstat (limited to 'becommands')
-rw-r--r--becommands/help.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/becommands/help.py b/becommands/help.py
index 2f37ec2..1402a2a 100644
--- a/becommands/help.py
+++ b/becommands/help.py
@@ -24,8 +24,7 @@ def execute(args):
if len(args) > 1:
raise cmdutil.UserError("Too many arguments.")
if len(args) == 0:
- for name, module in cmdutil.iter_commands():
- print "be %s\n %s" % (name, module.__doc__)
+ print_command_list()
else:
try:
print cmdutil.help(args[0])