From a51139aa828d879776cae9f3f6acb726c66db3db Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 22 Sep 2023 01:14:46 +0200 Subject: [PATCH] Fix error message --- master/custom/pr_testing.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/master/custom/pr_testing.py b/master/custom/pr_testing.py index bb868f3af..234ee6114 100644 --- a/master/custom/pr_testing.py +++ b/master/custom/pr_testing.py @@ -265,7 +265,8 @@ def handle_issue_comment(self, payload, event): f"did not match any builder", logLevel=logging.DEBUG) yield self._post_comment( payload["issue"]["comments_url"], - "The regex {builder_filter!r} did not match any buildbot builder", + f"The regex {builder_filter!r} did not match any buildbot builder." + f"Is the requested builder in the list of stable builders?", ) return (changes, "git")