From c603caca27bec4697ee053902f46ae1e0a05930c Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 16 Jul 2015 09:57:45 -0400 Subject: [PATCH] removed extra print now that items are getting passed to callback in result --- lib/ansible/executor/task_executor.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/ansible/executor/task_executor.py b/lib/ansible/executor/task_executor.py index 06946346902..a1930e5e14d 100644 --- a/lib/ansible/executor/task_executor.py +++ b/lib/ansible/executor/task_executor.py @@ -169,9 +169,6 @@ class TaskExecutor: res['item'] = item results.append(res) - # FIXME: we should be sending back a callback result for each item in the loop here - print(res) - return results def _squash_items(self, items, variables):