Skip to content
This repository has been archived by the owner on Dec 13, 2020. It is now read-only.

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Robpol86 committed Nov 19, 2014
1 parent 23dbdf9 commit 1e62710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coveralls_multi_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def validate(result, service_job_id, multi):
logging.debug('repo_token: {0}'.format(result.get('repo_token')))
raise RuntimeError('Must have repo_token set.')
# service_job_id
if service_job_id and not result.get('service_job_id'):
if (not multi and service_job_id) and not result.get('service_job_id'):
logging.error('Must have service_job_id set.')
logging.debug('service_job_id: {0}'.format(result.get('service_job_id')))
raise RuntimeError('Must have service_job_id set.')
Expand Down

0 comments on commit 1e62710

Please sign in to comment.