From 1f180a37e4e11a0a3ecf0ea8b1b0c1076c8a4d73 Mon Sep 17 00:00:00 2001 From: Stuart Prescott Date: Fri, 3 May 2024 16:48:49 +1000 Subject: [PATCH] Fix missing subparser in test harness Not needed in the build but needed for debugging the test harness... Gbp-Pq: Name 0002-Fix-missing-subparser-in-test-harness.patch --- testing/command.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/command.py b/testing/command.py index 9ef35ee2..c52b09fe 100644 --- a/testing/command.py +++ b/testing/command.py @@ -204,6 +204,7 @@ def main(): type=int, help="use build number n (0-based), latest = -1 (default)", ) + parser_list = subparsers.add_parser("list") args = parser.parse_args() if hasattr(args, "buildno"): -- 2.30.2