New feature - keep_on_top setting in FlexForm
This commit is contained in:
parent
b6cb352cb3
commit
aaedeae326
3 changed files with 10 additions and 8 deletions
|
@ -431,9 +431,10 @@ def ScriptLauncher():
|
|||
|
||||
def ExecuteCommandSubprocess(command, *args):
|
||||
try:
|
||||
expanded_args = []
|
||||
for a in args:
|
||||
expanded_args += a
|
||||
# expanded_args = []
|
||||
# for a in args:
|
||||
# expanded_args += a
|
||||
expanded_args = [*args]
|
||||
sp = subprocess.Popen([command,expanded_args], shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
out, err = sp.communicate()
|
||||
if out:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue