gui.py: Reroute stderr

This commit is contained in:
Mykola Grymalyuk
2021-12-26 18:23:55 -07:00
parent 98b08432fa
commit e626c79c81

View File

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