aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'becommands/__init__.py')
-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()