From 253d1f5bd735bb230554e444d7b735465adb958e Mon Sep 17 00:00:00 2001 From: Mathieu Dubois-Briand Date: Wed, 5 Feb 2025 11:52:08 +0100 Subject: [PATCH] schedulers: Fix missing parenthesis in field label Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- schedulers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/schedulers.py b/schedulers.py index e4760ed..aa60999 100644 --- a/schedulers.py +++ b/schedulers.py @@ -403,7 +403,7 @@ for builder in config.subbuilders: reason=util.StringParameter( name="reason", label="""Reason (please note the reason for triggering the - build and any expectations for the build's outcome:""", + build and any expectations for the build's outcome):""", required=False), properties=props_for_builder(builder), buttonName="Force Build")) @@ -461,7 +461,7 @@ def parent_scheduler(target): reason=util.StringParameter( name="reason", label="""Reason (please note the reason for triggering the build and - any expectations for the build's outcome:""", + any expectations for the build's outcome):""", required=False), properties=[ ReleaseSelector( @@ -535,7 +535,7 @@ schedulers.append(sched.ForceScheduler( ], reason=util.StringParameter( name="reason", - label="""Reason (please note the reason for triggering the docs build:""", + label="""Reason (please note the reason for triggering the docs build):""", required=False), properties=props_for_builder("docs"), buttonName="Force Build"))