From 8a3b520f70ba5747e765b6969a88c7364312f91b Mon Sep 17 00:00:00 2001 From: John R Barker Date: Mon, 12 Sep 2016 13:35:23 +0100 Subject: [PATCH] Add missing space in loop variable reuse message (#17516) --- lib/ansible/executor/task_executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/executor/task_executor.py b/lib/ansible/executor/task_executor.py index 80c9b279a5f..8000fb1a1b4 100644 --- a/lib/ansible/executor/task_executor.py +++ b/lib/ansible/executor/task_executor.py @@ -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)