Skip to content

Commit 3b974aa

Browse files
committed
subprocess.PIPE -> sys.stderr for errlog
1 parent a78d7fc commit 3b974aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mcp/client/stdio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ async def _create_platform_compatible_process(
220220
command: str,
221221
args: list[str],
222222
env: dict[str, str] | None = None,
223-
errlog: int | TextIO = subprocess.PIPE,
223+
errlog: TextIO = sys.stderr,
224224
cwd: Path | str | None = None,
225225
):
226226
"""

0 commit comments

Comments
 (0)