From f9a9e5e1b9baefa7c98b1ba6c473650e9a2c8492 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=8F=E6=81=BA=28Xia=20Kai=29?= Date: Wed, 23 Mar 2016 07:20:27 +0000 Subject: [PATCH] =?UTF-8?q?complete=20the=20docstring.=20Fixed=20#14794=20?= =?UTF-8?q?Signed-off-by:=20=E5=A4=8F=E6=81=BA(Xia=20Kai)=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/ansible/executor/task_executor.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/ansible/executor/task_executor.py b/lib/ansible/executor/task_executor.py index a0881cc222..8f8fd93f05 100644 --- a/lib/ansible/executor/task_executor.py +++ b/lib/ansible/executor/task_executor.py @@ -75,7 +75,9 @@ class TaskExecutor: def run(self): ''' The main executor entrypoint, where we determine if the specified - task requires looping and either runs the task with + task requires looping and either runs the task with self._run_loop() + or self._execute(). After that, the returned results are parsed and + returned as a dict. ''' display.debug("in run()")