se.py: removes error in passing options to a binary
This commit is contained in:
parent
292d8252a4
commit
89a5ba1ef8
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ def get_processes(options):
|
|||
process.executable = wrkld
|
||||
|
||||
if len(pargs) > idx:
|
||||
process.cmd = [wrkld] + [" "] + [pargs[idx]]
|
||||
process.cmd = [wrkld] + pargs[idx].split()
|
||||
else:
|
||||
process.cmd = [wrkld]
|
||||
|
||||
|
|
Loading…
Reference in a new issue