aboutsummaryrefslogtreecommitdiffstats
path: root/becommands
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2008-11-24 16:30:52 -0500
committerW. Trevor King <wking@drexel.edu>2008-11-24 16:30:52 -0500
commit442e5b00c8b5bf65041d0a1dafbf8c7eac0d5356 (patch)
treeae166fbb042c0edc147ca78880fac2eb54cefaa4 /becommands
parentbd43a971bae09f0e9a8faa23ea67786b293d43bf (diff)
downloadbugseverywhere-442e5b00c8b5bf65041d0a1dafbf8c7eac0d5356.tar.gz
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.
Diffstat (limited to 'becommands')
-rw-r--r--becommands/__init__.py15
1 files changed, 0 insertions, 15 deletions
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()