From f05979a528de70c78125437b0b1fa119e4b4ad05 Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Tue, 29 Jul 2025 10:04:40 +1200 Subject: [PATCH] Fix for statusfmt not going into status block --- sbysrc/sby.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbysrc/sby.py b/sbysrc/sby.py index f82f420..2d5a1da 100644 --- a/sbysrc/sby.py +++ b/sbysrc/sby.py @@ -72,7 +72,7 @@ if autotune and linkmode: print("ERROR: --link flag currently not available with --autotune") sys.exit(1) -if status_show or status_reset or task_status: +if status_show or status_reset or task_status or status_format: target = workdir_prefix or workdir or sbyfile if target is None: print("ERROR: Specify a .sby config file or working directory to use --status.")