summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/nbblib/bs.py2
-rw-r--r--src/nbblib/vcs.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/nbblib/bs.py b/src/nbblib/bs.py
index 02b2800..f8f247c 100644
--- a/src/nbblib/bs.py
+++ b/src/nbblib/bs.py
@@ -51,7 +51,7 @@ class BSSourceTree(plugins.GenericDetectPlugin):
@param vcs_tree the vcs.VCSourceTree object to examine
"""
- super(BSSourceTree, cls).detect(context, vcs_tree)
+ return super(BSSourceTree, cls).detect(context, vcs_tree)
def get_tree_root(self): return self._get_tree_root()
diff --git a/src/nbblib/vcs.py b/src/nbblib/vcs.py
index 61c2531..1a0ad22 100644
--- a/src/nbblib/vcs.py
+++ b/src/nbblib/vcs.py
@@ -88,7 +88,7 @@ class VCSourceTree(plugins.GenericDetectPlugin):
@param srcdir string with absolute path of source code directory
"""
- super(VCSourceTree, cls).detect(context, srcdir)
+ return super(VCSourceTree, cls).detect(context, srcdir)
def get_config(self):
"""Get configuration object which determines builddir etc"""