aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/help.py
diff options
context:
space:
mode:
authorAaron Bentley <abentley@panoramicfeedback.com>2006-04-03 14:39:52 -0400
committerAaron Bentley <abentley@panoramicfeedback.com>2006-04-03 14:39:52 -0400
commit4145df7bc4a4335c8ac5d123a8d02104f4e7dc55 (patch)
tree3b09842e31c1c4a646aec10c1212d362c314f0e6 /becommands/help.py
parent57ad245e927b1e5a9b230de3605431a041bb192e (diff)
parentb29e00c9cc5ef707719019728a25a71faa5a66a8 (diff)
downloadbugseverywhere-4145df7bc4a4335c8ac5d123a8d02104f4e7dc55.tar.gz
Merge help updates
Diffstat (limited to 'becommands/help.py')
-rw-r--r--becommands/help.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/becommands/help.py b/becommands/help.py
index fc89207..2f37ec2 100644
--- a/becommands/help.py
+++ b/becommands/help.py
@@ -27,7 +27,11 @@ def execute(args):
for name, module in cmdutil.iter_commands():
print "be %s\n %s" % (name, module.__doc__)
else:
- print cmdutil.help(args[0])
+ try:
+ print cmdutil.help(args[0])
+ except AttributeError:
+ print "No help available"
+
return