From 75ca07f695f2c9c7fe513c4642de4bdaa13aec7e Mon Sep 17 00:00:00 2001 From: Gilles DAVID Date: Fri, 6 Oct 2017 09:37:35 +0200 Subject: [PATCH] Fix return statement for 'salome context' --- bin/salomeContext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/salomeContext.py b/bin/salomeContext.py index 92878a52a..f3f3ccc01 100644 --- a/bin/salomeContext.py +++ b/bin/salomeContext.py @@ -340,7 +340,7 @@ class SalomeContext: cmd = ["/bin/bash"] proc = subprocess.Popen(cmd, shell=False, close_fds=True) proc.communicate() - return proc.returncode() + return proc.returncode # def _runSession(self, args=None): -- 2.39.2