From: Stuart Prescott Date: Fri, 3 May 2024 06:48:49 +0000 (+1000) Subject: Fix missing subparser in test harness X-Git-Tag: archive/raspbian/6.10.3-2+rpi1^2^2^2~10 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6a0301428a9caad6829737083916fde357e58fb3;p=pyside6.git 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 --- 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"):