diff options
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 cae8949..1402a2a 100644 --- a/becommands/help.py +++ b/becommands/help.py @@ -26,7 +26,11 @@ def execute(args): if len(args) == 0: print_command_list() else: - print cmdutil.help(args[0]) + try: + print cmdutil.help(args[0]) + except AttributeError: + print "No help available" + return |