From 3166faf8f5eb74c6667b7694ab6632f71dcae3c8 Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Mon, 3 Feb 2025 16:15:03 +0100 Subject: [PATCH] Fix 'request list --interactive' command that wasn't showing request forward prompt when message was part of the state change --- osc/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/core.py b/osc/core.py index e64ee139..c6e77d47 100644 --- a/osc/core.py +++ b/osc/core.py @@ -5860,7 +5860,7 @@ def request_interactive_review(apiurl, request, initial_cmd='', group=None, repl = raw_input(prompt).strip() # remember if we're accepting so we can decide whether to forward request to the parent project later on - accept = repl == "a" + accept = repl == "a" or repl.startswith("a ") if repl == 'i' and src_actions: req_summary = str(request) + '\n'