Skip to content

Commit a0a57bd

Browse files
committed
trio.open_process() isn't released yet
1 parent d11fe44 commit a0a57bd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pysipp/launch.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ async def run(
5656
for cmd in cmds:
5757
log.debug(
5858
"launching cmd:\n\"{}\"\n".format(cmd))
59-
proc = await trio.open_process(
59+
# proc = await trio.open_process(
60+
proc = await trio.Process(
6061
shlex.split(cmd),
6162
stdout=subprocess.DEVNULL,
6263
stderr=subprocess.PIPE

0 commit comments

Comments
 (0)