diff options
author | W. Trevor King <wking@drexel.edu> | 2009-12-14 20:33:35 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-12-14 20:33:35 -0500 |
commit | f9ee7a537561be80b9c232dd4fc848ddb564f6b0 (patch) | |
tree | 7534b7415aa5de13a6b2bbdba817561cb8a72592 /libbe/command/__init__.py | |
parent | 0f87a22c20a019f49455005542d4c60216ce39d2 (diff) | |
download | bugseverywhere-f9ee7a537561be80b9c232dd4fc848ddb564f6b0.tar.gz |
Transitioned help to Command-format
Diffstat (limited to 'libbe/command/__init__.py')
-rw-r--r-- | libbe/command/__init__.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libbe/command/__init__.py b/libbe/command/__init__.py index 8558882..916b5ce 100644 --- a/libbe/command/__init__.py +++ b/libbe/command/__init__.py @@ -20,10 +20,11 @@ import base UserError = base.UserError UnknownCommand = base.UnknownCommand get_command = base.get_command +get_command_class = base.get_command_class commands = base.commands Option = base.Option Argument = base.Argument Command = base.Command -__all__ = [UserError, UnknownCommand, get_command, commands, - Option, Argument, Command] +__all__ = [UserError, UnknownCommand, get_command, get_command_class, + commands, Option, Argument, Command] |