From 785821e69f54126d4e2ae2033ce646552ea025c5 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Thu, 9 Jul 2026 15:41:05 -0400 Subject: [PATCH] script/ptl-tool: use img to fix table width Otherwise the browser will shrink the table horizontally to the point it's unreadable. Signed-off-by: Patrick Donnelly --- src/script/ptl-tool.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/script/ptl-tool.py b/src/script/ptl-tool.py index 915a6fb748b..8909cd89d80 100755 --- a/src/script/ptl-tool.py +++ b/src/script/ptl-tool.py @@ -698,7 +698,8 @@ class CommitParityCheck(BaseAuditCheck): visualizer_lines.append("COMMIT PARITY VISUALIZER") visualizer_lines.append("=" * 80) - visualizer_md_lines.append(f"| BACKPORT PR #{pr} | SOURCE PR | SOURCE STATUS |") + # Add to make sure the column is shrunk down. + visualizer_md_lines.append(f"| BACKPORT PR #{pr} | SOURCE PR | SOURCE STATUS |") visualizer_md_lines.append("|---|---|---|") bp_to_source = {} -- 2.47.3