bugfix: lib.gui.wrapper - Allow errors in stdout

This commit is contained in:
torzdf 2023-07-01 10:45:38 +01:00
parent c22e105f18
commit 1bcc151cc5

View File

@ -261,9 +261,9 @@ class FaceswapControl():
stdout=PIPE,
stderr=PIPE,
bufsize=1,
universal_newlines=True,
text=True,
stdin=PIPE,
encoding="utf-8")
errors="backslashreplace")
self._process = proc
self._thread_stdout()
self._thread_stderr()