Skip to content

Commit

Permalink
bugfix: lib.gui.wrapper - Allow errors in stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
torzdf committed Jul 1, 2023
1 parent c22e105 commit 1bcc151
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/gui/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,9 @@ def execute_script(self, command: str, args: list[str]) -> None:
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()
Expand Down

0 comments on commit 1bcc151

Please sign in to comment.