1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Typo: assign not equal in boolean guard variable

Typo when variable controlling list of hosts left as available
This commit is contained in:
apenav 2014-03-25 10:32:06 +01:00
parent 605156c904
commit 09f6e7222e

View file

@ -658,7 +658,7 @@ class PlayBook(object):
# if no hosts remain, drop out # if no hosts remain, drop out
if not host_list: if not host_list:
if self.force_handlers: if self.force_handlers:
task_errors == True task_errors = True
break break
else: else:
return False return False