From db61e8f346a0218bf554b20d5f340249d9290c9f Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Tue, 13 Mar 2012 21:38:06 -0400 Subject: [PATCH] Fix -t tree mode so it writes out the value for each host, not everything, once again --- bin/ansible | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ansible b/bin/ansible index 30c69c5f686..fccd6adb43d 100755 --- a/bin/ansible +++ b/bin/ansible @@ -181,7 +181,7 @@ class Cli(object): options.one_line ) if options.tree: - write_tree_file(options.tree, hostname, bigjson(results)) + write_tree_file(options.tree, hostname, bigjson(contacted_host_result(results, hostname))) buf += msg if has_dark_hosts(results):