Add missing space in loop variable reuse message (#17516)

pull/17535/head
John R Barker 8 years ago 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)

Loading…
Cancel
Save