New feature - keep_on_top setting in FlexForm

This commit is contained in:
MikeTheWatchGuy 2018-09-07 22:13:15 -04:00
parent b6cb352cb3
commit aaedeae326
3 changed files with 10 additions and 8 deletions

View file

@ -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: