From: Gilles DAVID Date: Fri, 6 Oct 2017 07:37:35 +0000 (+0200) Subject: Fix return statement for 'salome context' X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=e72332cd1cce863d7efbdecfb2055b8d9ee0630f;p=modules%2Fyacs.git Fix return statement for 'salome context' --- 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):