From b3e8a3a3a28aa9de8fbfc6af12e75a36d4e17bcb Mon Sep 17 00:00:00 2001 From: Punch Date: Thu, 4 Jun 2026 01:45:25 +0000 Subject: [PATCH] Remove 10-char contributor truncation in forge specs output --- cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.py b/cli.py index 0c2e2d6..bf1c61d 100644 --- a/cli.py +++ b/cli.py @@ -211,7 +211,7 @@ def cmd_specs(args: argparse.Namespace) -> int: if sota: sota_score = sota.get("score") or sota.get("mass_grams") sota_str = _fmt_score(sota_score, metric) if sota_score is not None else "?" - by = sota.get("contributor", "?")[:10] + by = sota.get("contributor", "?") status = f"{RESET}by {by}" else: sota_str = "OPEN"