diff --git a/source/wt/__init__.py b/source/wt/__init__.py index 809aa02..a56b873 100644 --- a/source/wt/__init__.py +++ b/source/wt/__init__.py @@ -121,7 +121,7 @@ def _run_popen(tools_path: Path | str, *args, universal_newlines=False) -> subpr [tools_path, *args], stdin=subprocess.PIPE, stdout=subprocess.PIPE, - stderr=subprocess.PIPE, + stderr=subprocess.DEVNULL, creationflags=subprocess.CREATE_NO_WINDOW, bufsize=1 if universal_newlines else None, universal_newlines=universal_newlines,