From: Bernard Secher Date: Thu, 25 Aug 2016 08:42:57 +0000 (+0200) Subject: replace commands.getoutput by os.system because no output needed X-Git-Tag: V8_1_0rc1~7 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=6f054312ac4397862eec668a60296b462f92720f;p=modules%2Fkernel.git replace commands.getoutput by os.system because no output needed --- diff --git a/bin/killSalome.py b/bin/killSalome.py index 12a86ed70..67dc9278d 100755 --- a/bin/killSalome.py +++ b/bin/killSalome.py @@ -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__":