summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-30 22:34:38 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-30 22:34:38 +0100
commitf71658fe5f5327e15d6c64999aac04ee6e02585b (patch)
treeef0f28c784610cc2079cfda0086110ef46c30979
parent947bdcfeebdfd1f851a349cf53539199f58ff4b9 (diff)
downloadciatlib-f71658fe5f5327e15d6c64999aac04ee6e02585b.tar.gz
Fix calling function without self
-rw-r--r--ciatlib/master.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ciatlib/master.py b/ciatlib/master.py
index b4af0a0..9a6a7fa 100644
--- a/ciatlib/master.py
+++ b/ciatlib/master.py
@@ -128,7 +128,7 @@ class Pipeline:
steps=[Build]):
self.name = name
self.candidate_refs = candidate_refs
- self.slavenames = get_slaves(slave_type)
+ self.slavenames = self.get_slaves(slave_type)
self.clusters = clusters
self.steps = steps
self.categories = []