Fix tree view to work with callbacks

This commit is contained in:
Michael DeHaan 2012-03-26 21:18:48 -04:00
parent 45a455a805
commit 35c8750bbb

View file

@ -98,7 +98,7 @@ class CliRunnerCallbacks(DefaultRunnerCallbacks):
def on_unreachable(self, host, res):
print "%s | FAILED => %s" % (host, res)
if self.options.tree:
utils.write_tree_file(self.options.tree, host, dict(failed=True, msg=res))
utils.write_tree_file(self.options.tree, host, utils.bigjson(dict(failed=True, msg=res)))
def on_skipped(self, host):
pass