summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-10-01 01:27:32 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-10-01 01:27:32 +0100
commitb59d175f71e266997c8ab020027ce4a1814cc595 (patch)
tree6e38d66474ecd8b8c7ab109df9e1857229036fa0
parentac8cd01b2cd3cad55cd0433bb626b193fd79b87c (diff)
downloadorchestration-b59d175f71e266997c8ab020027ce4a1814cc595.tar.gz
Fix stupid error in bottlrock
-rw-r--r--source/bottlerock.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/bottlerock.py b/source/bottlerock.py
index d511a05..8cacfbb 100644
--- a/source/bottlerock.py
+++ b/source/bottlerock.py
@@ -88,7 +88,7 @@ def repo_update():
# if baseref changes then trigger firehose
properties = {'repo_name':repo_name,'ref':ref}
return sendchange('repo_update',properties)
- elif ref in candidate_refs in candidate_refs:
+ elif ref in candidate_refs:
# if a candidate ref changes then trigger that pipeline
pipeline = configure.pipeline_from_candidate_ref(ref)
properties = {"ref":ref,"sha":sha}