From be63ecd7dcd86480b7d134c0b281d5a3160531eb Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Fri, 27 Oct 2023 12:20:26 +0200 Subject: [PATCH] Minor changes --- clusterman/commands/plugins.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clusterman/commands/plugins.py b/clusterman/commands/plugins.py index caed02a..5a58807 100644 --- a/clusterman/commands/plugins.py +++ b/clusterman/commands/plugins.py @@ -1,7 +1,7 @@ -import os +import subprocess from clusterman.config import CONF def execute(name,args): executable=CONF["plugins"][name] - os.system(executable+" "+" ".join(args)) + subprocess.run(executable.split(" ")+args)