From 233fdf2d2b7951c7178cc6ef7b30034a5c97dd68 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Thu, 30 Jul 2026 03:10:04 -0400 Subject: [PATCH] =?UTF-8?q?[IMP]=20script=20todo:=20suivi=20install=20?= =?UTF-8?q?=E2=80=94=20colonne=20=C3=89tat=20moins=20large=20(12=20->=2010?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit La colonne « État » réservait 12 caractères alors que le plus long libellé (« ❌ effacée ») en fait 10 -> elle paraissait trop large. Ramenée à 10 (sans troncature). Co-Authored-By: Claude Opus 4.8 (1M context) --- script/todo/qemu_install_monitor.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/script/todo/qemu_install_monitor.py b/script/todo/qemu_install_monitor.py index 253cec2..e223f2c 100644 --- a/script/todo/qemu_install_monitor.py +++ b/script/todo/qemu_install_monitor.py @@ -689,7 +689,9 @@ def run_monitor(manifest_path: str, run_app: bool = True): table.add_column("#", key="seq", width=3) table.add_column("VM", key="vm", width=26) table.add_column("⚠", key="err", width=4) - table.add_column("État", key="state", width=12) + # width=10 : juste assez pour le plus long libellé (« ❌ effacée »), + # sans la marge inutile de 12 qui faisait paraître la colonne large. + table.add_column("État", key="state", width=10) # « Odoo » : l'UI web répond-elle sur :8069 ? (🟢 up / — down) table.add_column("Odoo", key="odoo", width=6) table.add_column("Durée", key="elapsed", width=7)