summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-30 23:44:40 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-30 23:44:40 +0100
commit89beff570892c41fd2b3e4e8712b705e34870255 (patch)
tree476c8372941f2986f144d96722e6382821637813
parent90a0ac821b24c0ad3745f2c0d4a2a2eb628ab8b9 (diff)
downloadciatlib-89beff570892c41fd2b3e4e8712b705e34870255.tar.gz
Fix name error
-rw-r--r--ciatlib/master.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ciatlib/master.py b/ciatlib/master.py
index 42d26a2..3caa751 100644
--- a/ciatlib/master.py
+++ b/ciatlib/master.py
@@ -167,7 +167,7 @@ def pipeline_from_dict(_dict):
steps = []
for step in str_steps:
for S in Steps:
- if step == step.name:
+ if step == S.name:
steps.append(S)
break
return Pipeline(name,candidate_refs,slave_type,clusters,steps)