From 0c53c3166bd3fbd94daa9f81a80ff92feea00ec4 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Tue, 4 Feb 2014 13:24:24 +0000 Subject: [PATCH] close port before exiting on "initialize" --- contrib/onelab/python/onelab.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/contrib/onelab/python/onelab.py b/contrib/onelab/python/onelab.py index 08f7aebf14..cabd186d3d 100755 --- a/contrib/onelab/python/onelab.py +++ b/contrib/onelab/python/onelab.py @@ -360,8 +360,11 @@ class client : self._send(self._GMSH_START, str(os.getpid())) self.action = self.getString(self.name + '/Action') self.setNumber('IsPyMetamodel',value=1,visible=0) - if self.action == "initialize": exit(0) - + self.sendInfo("Performing OneLab '" + self.action + "'") + if self.action == "initialize": + self.finalize() + exit(0) + def finalize(self): # code aster python interpreter does not call the destructor at exit, it is # necessary to call finalize() epxlicitely -- GitLab