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

Fix code typo. I'll blame jet lag for now :)

This commit is contained in:
Michael DeHaan 2013-10-30 21:28:47 -04:00
parent 90cce35919
commit 7b331ef6ed

View file

@ -463,7 +463,7 @@ class Runner(object):
for x in items:
inject['item'] = x
if not self.conditional or utils.check_conditional(self.conditional, self.basedir, inject, fail_on_undefined=self.error_on_undefined_vars):
use_these_items.append(item)
use_these_items.append(x)
inject['item'] = ",".join(use_these_items)
items = None