From b59d175f71e266997c8ab020027ce4a1814cc595 Mon Sep 17 00:00:00 2001 From: Will Holland Date: Thu, 1 Oct 2015 01:27:32 +0100 Subject: Fix stupid error in bottlrock --- source/bottlerock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} -- cgit v1.2.1