mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add missing space in loop variable reuse message (#17516)
This commit is contained in:
parent
f02ad99569
commit
8a3b520f70
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ class TaskExecutor:
|
|||
loop_pause = self._task.loop_control.pause or 0
|
||||
|
||||
if loop_var in task_vars:
|
||||
display.warning(u"The loop variable '%s' is already in use."
|
||||
display.warning(u"The loop variable '%s' is already in use. "
|
||||
u"You should set the `loop_var` value in the `loop_control` option for the task"
|
||||
u" to something else to avoid variable collisions and unexpected behavior." % loop_var)
|
||||
|
||||
|
|
Loading…
Reference in a new issue