diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2006-04-03 14:39:52 -0400 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2006-04-03 14:39:52 -0400 |
commit | 4145df7bc4a4335c8ac5d123a8d02104f4e7dc55 (patch) | |
tree | 3b09842e31c1c4a646aec10c1212d362c314f0e6 /becommands/help.py | |
parent | 57ad245e927b1e5a9b230de3605431a041bb192e (diff) | |
parent | b29e00c9cc5ef707719019728a25a71faa5a66a8 (diff) | |
download | bugseverywhere-4145df7bc4a4335c8ac5d123a8d02104f4e7dc55.tar.gz |
Merge help updates
Diffstat (limited to 'becommands/help.py')
-rw-r--r-- | becommands/help.py | 6 |
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 |