Fixed the default command value to make utils.CmdResult().__repr__() work.
Signed-off-by: Jean-Marc Eurin <jmeurin@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@3076 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/common_lib/utils.py b/client/common_lib/utils.py
index 93a1226..2a13c4e 100644
--- a/client/common_lib/utils.py
+++ b/client/common_lib/utils.py
@@ -761,7 +761,7 @@
"""
- def __init__(self, command=None, stdout="", stderr="",
+ def __init__(self, command="", stdout="", stderr="",
exit_status=None, duration=0):
self.command = command
self.exit_status = exit_status