From f788db0d97791023247d6dd91e8a26ff9eb4880d Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 19 Sep 2023 16:32:13 +0200 Subject: [PATCH] service: do not reject documented 'r' abbreviation for 'run' --- osc/commandline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/commandline.py b/osc/commandline.py index fa6dce51..8ffdeef1 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -7663,7 +7663,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. self.argparse_error("Please specify a command") command = args.pop(0) - if command not in ("runall", "ra", "run", "localrun", "manualrun", "disabledrun", "remoterun", "lr", "dr", "mr", "rr", "merge", "wait"): + if command not in ("runall", "ra", "run", "localrun", "manualrun", "disabledrun", "remoterun", "lr", "dr", "mr", "r", "rr", "merge", "wait"): self.argparse_error(f"Invalid command: {command}") if command in ("localrun", "lr"):