aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command/__init__.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-12-27 16:50:36 -0500
committerW. Trevor King <wking@drexel.edu>2009-12-27 16:50:36 -0500
commitcfebc238cbda9b6338ec57d5c215c4cbf0246f8b (patch)
tree30efcc0f354a175220814ea5d4e74dd2d71fa2fb /libbe/command/__init__.py
parentdff704764d77bffbf6cc94c5ba4bb03309da45f8 (diff)
downloadbugseverywhere-cfebc238cbda9b6338ec57d5c215c4cbf0246f8b.tar.gz
Moved InvalidStorageVersion from libbe.command to libbe.storage
Also added ConnectionError pretty-print to ui.command_line, storage version checking to BugDir.duplicate_bugdir(), and optional revision argument to Storage.storage_version().
Diffstat (limited to 'libbe/command/__init__.py')
-rw-r--r--libbe/command/__init__.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/libbe/command/__init__.py b/libbe/command/__init__.py
index ab9d2db..916b5ce 100644
--- a/libbe/command/__init__.py
+++ b/libbe/command/__init__.py
@@ -19,7 +19,6 @@ import base
UserError = base.UserError
UnknownCommand = base.UnknownCommand
-InvalidStorageVersion = base.InvalidStorageVersion
get_command = base.get_command
get_command_class = base.get_command_class
commands = base.commands
@@ -27,6 +26,5 @@ Option = base.Option
Argument = base.Argument
Command = base.Command
-__all__ = [UserError, UnknownCommand, InvalidStorageVersion,
- get_command, get_command_class,
+__all__ = [UserError, UnknownCommand, get_command, get_command_class,
commands, Option, Argument, Command]