From 81eb3ea4de05606b01acaf1edc7bf0b336fb5cb9 Mon Sep 17 00:00:00 2001 From: jfa Date: Thu, 9 Mar 2006 14:33:13 +0000 Subject: [PATCH] PAL10512: Improve fix, avoiding modifications of 'args' dictionary, common for all processes. --- bin/runSalome.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/runSalome.py b/bin/runSalome.py index 09872cec8..1cff35891 100755 --- a/bin/runSalome.py +++ b/bin/runSalome.py @@ -355,7 +355,7 @@ class LoggerServer(Server): class SessionLoader(Server): def __init__(self,args): - self.args=args + self.args = args.copy() # Bug 11512 (Problems with runSalome --xterm on Mandrake and Debian Sarge) self.args['xterm']=0 # @@ -378,7 +378,7 @@ class SessionLoader(Server): class SessionServer(Server): def __init__(self,args): - self.args=args + self.args = args.copy() # Bug 11512 (Problems with runSalome --xterm on Mandrake and Debian Sarge) self.args['xterm']=0 # -- 2.39.2