From f1184b5807ec9ab7cb3a3d0d534d25241b38103a Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=2E=C3=87a=C4=9Flar=20Onur?= Date: Wed, 11 Aug 2010 10:18:19 -0400 Subject: [PATCH] or/and --- source/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/utils.py b/source/utils.py index 696f3f3..f57a0a3 100644 --- a/source/utils.py +++ b/source/utils.py @@ -159,7 +159,7 @@ def sysexec( cmd, log= None, fsck = False ): # 16 - Usage or syntax error # 32 - Fsck canceled by user request # 128 - Shared library error - if returncode != 0 or returncode != 1: + if returncode != 0 and returncode != 1: raise BootManagerException, "Running %s failed (rc=%d)" % (cmd,returncode) else: if returncode != 0: -- 2.47.0