aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Schumm <philschumm@gmail.com>2011-07-30 12:00:53 -0500
committerPhil Schumm <philschumm@gmail.com>2011-07-30 12:00:53 -0500
commit3f365422e59403e08a96768c21d09190a7aea2a9 (patch)
tree6996c3602132a977d9e31b6df6c9bd7522bd809f
parentbb645f8e489b9f50cd0aec7237ec9adb721797a8 (diff)
downloadbugseverywhere-3f365422e59403e08a96768c21d09190a7aea2a9.tar.gz
Minor fix to doctest for command.base.get_command(); failure introduced by change to command.base.UnknownCommand in commit 0d5c9c68e947617c9d073d5f19351bdd8f3866db
-rw-r--r--libbe/command/base.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/libbe/command/base.py b/libbe/command/base.py
index 311791f..11835ee 100644
--- a/libbe/command/base.py
+++ b/libbe/command/base.py
@@ -73,6 +73,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
"""