From 6f054312ac4397862eec668a60296b462f92720f Mon Sep 17 00:00:00 2001 From: Bernard Secher Date: Thu, 25 Aug 2016 10:42:57 +0200 Subject: [PATCH] replace commands.getoutput by os.system because no output needed --- bin/killSalome.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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__": -- 2.39.2