From 442e5b00c8b5bf65041d0a1dafbf8c7eac0d5356 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 24 Nov 2008 16:30:52 -0500 Subject: Fixed broken doctest and inconsitent indentation from not wrapping comments. Also emptied becommands/__init__.py. I didn't understand the plugin interface when I wrote it. --- becommands/__init__.py | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'becommands/__init__.py') diff --git a/becommands/__init__.py b/becommands/__init__.py index 02c977e..e69de29 100644 --- a/becommands/__init__.py +++ b/becommands/__init__.py @@ -1,15 +0,0 @@ -"Command plugins for the BugsEverywhere be script." - -__all__ = ["set_root", "set", "new", "remove", "list", "show", "close", "open", - "assign", "severity", "status", "target", "comment", "diff", - "help"] - -def import_all(): - for i in __all__: - name = __name__ + "." + i - try: - __import__(name, globals(), locals(), []) - except ImportError: - print "Import of %s failed!" % (name,) - -import_all() -- cgit