Skip to content

Commit 9e5010c

Browse files
authored
Improved launch_ironpython_server subprocess (#866)
Co-authored-by: maxcapodi78 <Shark78>
1 parent fe7af1a commit 9e5010c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyaedt/common_rpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ def launch_ironpython_server(aedt_path, non_graphical=False, port=18000, launch_
389389
str(val),
390390
str(port1),
391391
]
392-
proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=non_graphical)
392+
proc = subprocess.Popen(" ".join(command), shell=True)
393393
print("Process {} started on {}".format(proc.pid, socket.getfqdn()))
394394
print("Using Port {}".format(port1))
395395
print("Warning: Remote CPython to Ironpython may have some limitations.")

0 commit comments

Comments
 (0)