Commit b6261d05 by Cristian Ciupitu

Fix typo: & -> and

`and` is the boolean operator for AND in [Python][1].
`&` is the bitwise operator for AND in [Python][2].

[1]: https://docs.python.org/2/reference/expressions.html#boolean-operations
[2]: https://docs.python.org/2/reference/expressions.html#binary-bitwise-operations
parent 9edf3a74
......@@ -32,7 +32,7 @@ class AsyncPoller(object):
# flag to determine if at least one host was contacted
self.active = False
# True to work with & below
# True to work with the `and` below
skipped = True
jid = None
for (host, res) in results['contacted'].iteritems():
......@@ -42,7 +42,7 @@ class AsyncPoller(object):
self.runner.vars_cache[host]['ansible_job_id'] = jid
self.active = True
else:
skipped = skipped & res.get('skipped', False)
skipped = skipped and res.get('skipped', False)
self.results['contacted'][host] = res
for (host, res) in results['dark'].iteritems():
self.runner.vars_cache[host]['ansible_job_id'] = ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment