From: abd Date: Thu, 5 Feb 2009 08:07:26 +0000 (+0000) Subject: Fix problem of spaces in TEMP path X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b94acecef8947315d4c4fdc3d0842af0dc98e9a3;p=modules%2Fkernel.git Fix problem of spaces in TEMP path --- diff --git a/bin/nameserver.py b/bin/nameserver.py index 329310fba..46986f897 100755 --- a/bin/nameserver.py +++ b/bin/nameserver.py @@ -95,7 +95,7 @@ class NamingServer(Server): #print "port=", aPort if sys.platform == "win32": #print "start omniNames -start " + aPort + " -logdir " + upath - self.CMD=['omniNames -start ' , aPort , ' -logdir ' , '\"' + upath + '\"', ' -errlog', upath+'/omniNameErrors.log'] + self.CMD=['omniNames -start ' , aPort , ' -logdir ' , '\"' + upath + '\"', ' -errlog', '\"' + upath+'/omniNameErrors.log' + '\"'] #os.system("start omniNames -start " + aPort + " -logdir " + upath) else: #self.CMD=['omniNames -start ' , aPort , ' -logdir ' , upath , ' &']