From a5499d8992408da9c61d1dcdbe88d67ee42a958a Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Tue, 28 Feb 2012 00:45:37 -0500 Subject: [PATCH] Add ansible command, fix import error in runner --- command | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/command b/command index d1b43c1a117..fbef7944d99 100755 --- a/command +++ b/command @@ -51,6 +51,11 @@ except: endd = datetime.datetime.now() delta = endd - startd +if out is None: + out = '' +if err is None: + err = '' + result = { "stdout" : out, "stderr" : err,