mirror of https://github.com/razor-ai/soup.git
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:
parent
808c93587c
commit
a108c8183b
|
|
@ -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).",
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue