From 3b0db9e352afca5c38b77365f9204b062b972176 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Thu, 7 Feb 2013 13:09:42 +0100 Subject: [PATCH] qa_utils: Fix order of arguments passed to _AssertRetCode Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: Guido Trotter <ultrotter@google.com> --- qa/qa_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/qa_utils.py b/qa/qa_utils.py index ed168bd49..774ccc9ce 100644 --- a/qa/qa_utils.py +++ b/qa/qa_utils.py @@ -325,7 +325,7 @@ def GetCommandOutput(node, cmd, tty=None, fail=False): p = StartLocalCommand(GetSSHCommand(node, cmd, tty=tty), stdout=subprocess.PIPE) rcode = p.wait() - _AssertRetCode(rcode, fail, node, cmd) + _AssertRetCode(rcode, fail, cmd, node) return p.stdout.read() -- GitLab