replace run with Popen

This commit is contained in:
2019-10-08 22:19:28 +02:00
parent 8f1365d50c
commit 17420df715

View File

@@ -52,8 +52,7 @@ def rootPage():
def executeScript(scriptName): def executeScript(scriptName):
path = os.path.expanduser(scriptName) path = os.path.expanduser(scriptName)
proc = subprocess.run(path) subprocess.Popen(path)
proc.check_returncode()
def readExecutionConfig(configFile): def readExecutionConfig(configFile):
global config global config