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.
This commit is contained in:
Alpamys 2026-07-04 19:08:27 +05:00
parent 808c93587c
commit a108c8183b
1 changed files with 1 additions and 1 deletions

View File

@ -524,7 +524,7 @@ from soup_cli.commands import mcp as _mcp_cmd # noqa: E402
app.add_typer( app.add_typer(
_mcp_cmd.app, _mcp_cmd.app,
name="mcp", 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).",
) )