From 669d9ba74fd3ff77fa8d9cd9f42c04c2370e4d2b Mon Sep 17 00:00:00 2001 From: Ian Grant <ian.conway.grant@gmail.com> Date: Fri, 16 May 2025 18:52:36 -0400 Subject: [PATCH] fix: update prompt messages for clarity style: update prompt_after_run input message for clarity and consistency --- run_on_maap.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/run_on_maap.py b/run_on_maap.py index 583500e..99c26ee 100644 --- a/run_on_maap.py +++ b/run_on_maap.py @@ -259,8 +259,7 @@ def main( return "exit" else: answer = input( - "\nAll jobs finished with some failures. " - "Press 'r' to retry failures or any other key to exit: " + "\nAll jobs finished with some failures. Enter 'r' to retry failures, 'x' to exit.\n> " ).strip().lower() if answer == "r": return "resubmit" -- GitLab