aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command/__init__.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-12-12 20:57:59 -0500
committerW. Trevor King <wking@drexel.edu>2009-12-12 20:57:59 -0500
commitdff6bd9bf89ca80e2265696a478e540476718c9c (patch)
tree230f35262808052839ae2401d99cdf23cc304f20 /libbe/command/__init__.py
parent86f886399813d37f3cfcf74a824d352e01eb0d8c (diff)
downloadbugseverywhere-dff6bd9bf89ca80e2265696a478e540476718c9c.tar.gz
Moved be to libbe.ui.command_line and transitioned to Command format.
Diffstat (limited to 'libbe/command/__init__.py')
-rw-r--r--libbe/command/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/command/__init__.py b/libbe/command/__init__.py
index 344a8a2..8558882 100644
--- a/libbe/command/__init__.py
+++ b/libbe/command/__init__.py
@@ -18,12 +18,12 @@
import base
UserError = base.UserError
-UnkownCommand = base.UnknownCommand
+UnknownCommand = base.UnknownCommand
get_command = base.get_command
commands = base.commands
Option = base.Option
Argument = base.Argument
Command = base.Command
-__all__ = [UserError, UnkownCommand, get_command, commands,
+__all__ = [UserError, UnknownCommand, get_command, commands,
Option, Argument, Command]