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:
parent
90cce35919
commit
7b331ef6ed
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue