mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 08:13:08 +00:00
Add missing space in loop variable reuse message (#17516)
This commit is contained in:
committed by
Brian Coca
parent
f02ad99569
commit
8a3b520f70
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user