]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Fix an error message on SALOME session server exit:
authorvsr <vsr@opencascade.com>
Wed, 20 Feb 2008 15:38:15 +0000 (15:38 +0000)
committervsr <vsr@opencascade.com>
Wed, 20 Feb 2008 15:38:15 +0000 (15:38 +0000)
Traceback (most recent call last):
  File "<string>", line 1, in ?
OSError: [Errno 3] No such process

src/Session/SALOME_Session_Server.cxx

index ee154f69ec67c66b1f97dfe79e49b760b0c99e8f..daa2dbb18e7e80014e75aeaac5c071a6afae4993 100755 (executable)
@@ -348,7 +348,8 @@ void killOmniNames()
       cmd += QString("[ m.update(i) for i in pids ]; ");
       cmd += QString("pids=filter(lambda a: 'notifd' in m[a], m.keys()); ");
       cmd += QString("[ os.kill(pid, 9) for pid in pids ]; ");
-      cmd = QString("python -c \"%1\"").arg(cmd);
+      cmd += QString("os.remove(filedict); ");
+      cmd  = QString("python -c \"%1\" > /dev/null").arg(cmd);
       system( cmd.latin1() );
     }