From b369f84c48ede66358277437b069d72e05063a06 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Mon, 23 Jun 2008 17:18:40 +0000 Subject: [PATCH] fix error checking bug --- qaapi/qa/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qaapi/qa/utils.py b/qaapi/qa/utils.py index a7718e4..871a54f 100644 --- a/qaapi/qa/utils.py +++ b/qaapi/qa/utils.py @@ -43,7 +43,7 @@ def commands(command, fatal = True, verbose = False, logfile = Logfile('/var/log (status, output) = getstatusoutput(command) print >> logfile, "+ "+command print >> logfile, output.strip() - if fatal and status == 0 and status == 256 and output: + if fatal and status == 256 and output: raise Exception, "%(command)s Failed:\n%(output)s" % locals() return (status, output) -- 2.47.0