]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
[PATCH] Fix test on return code
authorGilles DAVID <gilles-g.david@edf.fr>
Thu, 14 Sep 2017 13:04:40 +0000 (15:04 +0200)
committerGilles DAVID <gilles-g.david@edf.fr>
Thu, 14 Sep 2017 13:05:46 +0000 (15:05 +0200)
Conflicts:
bin/salomeContext.py

bin/salomeContext.py

index 2e63384f26fc032e2fb6ee6ffb3fe2687f0c588f..1e72edc659e1981af7aea4057ec0ef662b35d16e 100644 (file)
@@ -261,10 +261,10 @@ class SalomeContext:
     try:
       res = getattr(self, command)(options) # run appropriate method
       return res or (None, None)
-    except SystemExit, returncode:
-      if returncode != 0:
-        self.getLogger().error("SystemExit %s in method %s.", returncode, command)
-      return returncode
+    except SystemExit as ex:
+      if ex.code != 0:
+        self.getLogger().error("SystemExit %s in method %s.", ex.code, command)
+      return ex.code
     except StandardError:
       self.getLogger().error("Unexpected error:")
       import traceback