From c40c424d6674d927d72f68b4b05c78d1d4a7f820 Mon Sep 17 00:00:00 2001 From: marcsello Date: Sun, 12 Dec 2021 19:02:23 +0100 Subject: [PATCH] added stderr --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index 19fce07..3622a6f 100644 --- a/main.py +++ b/main.py @@ -74,6 +74,7 @@ class RealSlimShadyThread(threading.Thread): device.proc = subprocess.Popen( device.executable.split(' ') + [str(device.id)], stdout=device.log_fd, + stderr=device.log_fd, preexec_fn=lambda: os.setpgrp() )