From e626c79c8122b51764be36d6267adefa54bdb7d0 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Sun, 26 Dec 2021 18:23:55 -0700 Subject: [PATCH] gui.py: Reroute stderr --- gui/gui_main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/gui_main.py b/gui/gui_main.py index f305f36de..787878cf0 100644 --- a/gui/gui_main.py +++ b/gui/gui_main.py @@ -859,7 +859,7 @@ class wx_python_gui: process = subprocess.Popen( args, stdout=subprocess.PIPE, - stderr=subprocess.PIPE + stderr=subprocess.STDOUT ) wx.GetApp().Yield() while True: @@ -950,7 +950,7 @@ class wx_python_gui: process = subprocess.Popen( args, stdout=subprocess.PIPE, - stderr=subprocess.PIPE + stderr=subprocess.STDOUT ) wx.GetApp().Yield() while True: