From: Tony Mack Date: Mon, 23 Jun 2008 17:18:40 +0000 (+0000) Subject: fix error checking bug X-Git-Tag: tests-4.3-0~153 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=b369f84c48ede66358277437b069d72e05063a06;p=tests.git fix error checking bug --- 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)