Salome HOME
replace commands.getoutput by os.system because no output needed
authorBernard Secher <bernard.secher@cea.fr>
Thu, 25 Aug 2016 08:42:57 +0000 (10:42 +0200)
committerBernard Secher <bernard.secher@cea.fr>
Thu, 25 Aug 2016 08:42:57 +0000 (10:42 +0200)
bin/killSalome.py

index 12a86ed70b84c0bfae1b11d31487761c80c8cf0b..67dc9278d5a3a2e0bd46daf8ba8cfee0588a48ca 100755 (executable)
@@ -102,7 +102,7 @@ def killAllPorts():
             pass
         pass
         cmd = "rm -f " + os.environ['HOME'] + "/.urifile_*"
-        commands.getoutput(cmd)
+        os.system(cmd)
     pass
 
 if __name__ == "__main__":