diff mbox series

[yocto-autobuilder2,1/2] schedulers: Fix missing parenthesis in field label

Message ID 20250205-mathieu-local_ab_docker-v1-1-b1543323b7e7@bootlin.com
State New
Headers show
Series Add docker file to create a local instance | expand

Commit Message

Mathieu Dubois-Briand Feb. 5, 2025, 10:52 a.m. UTC
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
---
 schedulers.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/schedulers.py b/schedulers.py
index e4760ed8bf1d..aa6099984e79 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"))