summaryrefslogtreecommitdiffstats
path: root/src/nbblib/vcs.py
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2008-06-30 23:10:53 +0200
committerHans Ulrich Niedermann <hun@n-dimensional.de>2008-07-15 12:28:55 +0200
commitd3571ab23839adb57216378539425fb3c42c0bc2 (patch)
tree72562fd6bec12a0f8d5c50c9b4c5dc53d8eea689 /src/nbblib/vcs.py
parent7f76450503c455eb057e111d7f3e05b7d0815a54 (diff)
downloadnbb-d3571ab23839adb57216378539425fb3c42c0bc2.tar.gz
nbb-d3571ab23839adb57216378539425fb3c42c0bc2.tar.xz
nbb-d3571ab23839adb57216378539425fb3c42c0bc2.zip
Define __all__ in nbblib.*
Diffstat (limited to 'src/nbblib/vcs.py')
-rw-r--r--src/nbblib/vcs.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nbblib/vcs.py b/src/nbblib/vcs.py
index f2a4ea5..6162f3c 100644
--- a/src/nbblib/vcs.py
+++ b/src/nbblib/vcs.py
@@ -8,6 +8,9 @@ from nbblib import progutils
from nbblib import plugins
+__all__ = []
+
+
class AbstractConfig(object):
"""Return static config until we implement real config reading"""
@@ -54,6 +57,7 @@ class AmbigousVCSDetection(plugins.AmbigousPluginDetection):
return "Ambigous VCS types detected for %s:\n%s" % (repr(self.srcdir), table)
+__all__.append('VCSourceTree')
class VCSourceTree(plugins.GenericDetectPlugin):
"""
Mount point for plugins which refer to actions that can be performed.