summaryrefslogtreecommitdiffstats
path: root/src/nbblib/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/nbblib/__init__.py')
-rw-r--r--src/nbblib/__init__.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/nbblib/__init__.py b/src/nbblib/__init__.py
index 0c1a2c2..5f4a254 100644
--- a/src/nbblib/__init__.py
+++ b/src/nbblib/__init__.py
@@ -1,11 +1,14 @@
import nbblib.bs as bs
import nbblib.commands as commands
-import nbblib.newplugins as newplugins
+import nbblib.plugins as plugins
import nbblib.package as package
-import nbblib.vcs as plugins
+import nbblib.progutils as progutils
+import nbblib.vcs as vcs
from package import PACKAGE_VERSION
-__all__ = ['bs', 'commands', 'newplugins',
- 'package', 'plugins', 'vcs',
+__all__ = ['bs', 'commands',
+ 'package', 'plugins',
+ 'progutils',
+ 'vcs',
'PACKAGE_VERSION']