From a108c8183b053cf83bfe744261aa88672b144e09 Mon Sep 17 00:00:00 2001 From: Alpamys Date: Sat, 4 Jul 2026 19:08:27 +0500 Subject: [PATCH] fix(cli): ASCII-safe mcp help string (em-dash -> hyphen) The v0.71.28 mcp command help used an em-dash, tripping the long-standing test_cli_subprocess.py::TestEncoding::test_help_output_is_ascii_safe guard (Windows encoding safety). Replace with an ASCII hyphen; main CI was red. --- src/soup_cli/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soup_cli/cli.py b/src/soup_cli/cli.py index dfdcdf9..bbf0cb3 100644 --- a/src/soup_cli/cli.py +++ b/src/soup_cli/cli.py @@ -524,7 +524,7 @@ from soup_cli.commands import mcp as _mcp_cmd # noqa: E402 app.add_typer( _mcp_cmd.app, name="mcp", - help="Model Context Protocol server — drive Soup from any MCP client (v0.71.28).", + help="Model Context Protocol server - drive Soup from any MCP client (v0.71.28).", )