diff options
Diffstat (limited to 'libbe/command/__init__.py')
-rw-r--r-- | libbe/command/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libbe/command/__init__.py b/libbe/command/__init__.py index 1cad096..b520f40 100644 --- a/libbe/command/__init__.py +++ b/libbe/command/__init__.py @@ -1,4 +1,5 @@ # Copyright (C) 2005-2011 Aaron Bentley <abentley@panoramicfeedback.com> +# Chris Ball <cjb@laptop.org> # W. Trevor King <wking@drexel.edu> # # This file is part of Bugs Everywhere. @@ -19,6 +20,7 @@ import base UserError = base.UserError +UsageError = base.UsageError UnknownCommand = base.UnknownCommand get_command = base.get_command get_command_class = base.get_command_class @@ -33,7 +35,7 @@ UnconnectedStorageGetter = base.UnconnectedStorageGetter StorageCallbacks = base.StorageCallbacks UserInterface = base.UserInterface -__all__ = [UserError, UnknownCommand, +__all__ = [UserError, UsageError, UnknownCommand, get_command, get_command_class, commands, Option, Argument, Command, InputOutput, StdInputOutput, StringInputOutput, |