Skip to content

Commit

Permalink
Stupid bug in is_travis_started
Browse files Browse the repository at this point in the history
  • Loading branch information
carlvitzthum committed May 13, 2019
1 parent 9347fd4 commit ba6b407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dcicutils/beanstalk_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def is_travis_started(request_url):
if resp.ok:
logger.info("Travis request response (okay): %s" % resp.json())
details = resp.json()
if len(resp.json().get('builds', []) == 1):
if len(resp.json().get('builds', [])) == 1:
is_ready = True
return is_ready, details

Expand Down

0 comments on commit ba6b407

Please sign in to comment.