diff options
Diffstat (limited to 'libbe/command/base.py')
-rw-r--r-- | libbe/command/base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbe/command/base.py b/libbe/command/base.py index 311791f..ab98cb1 100644 --- a/libbe/command/base.py +++ b/libbe/command/base.py @@ -1,4 +1,5 @@ # Copyright (C) 2009-2011 Chris Ball <cjb@laptop.org> +# Phil Schumm <philschumm@gmail.com> # Robert Lehmann <mail@robertlehmann.de> # W. Trevor King <wking@drexel.edu> # @@ -73,6 +74,7 @@ def get_command(command_name): ... except UnknownCommand, e: ... print e Unknown command 'asdf' + (No module named asdf) >>> repr(get_command('list')).startswith("<module 'libbe.command.list' from ") True """ |