From a9ece01a7b43e870b4290710df05417aba58cb7f Mon Sep 17 00:00:00 2001 From: Aki Sasaki Date: Wed, 9 Dec 2020 01:44:22 -0800 Subject: [PATCH] fix relpro schema (#16932) The description needs to be a string. We accidentally made it a tuple. --- taskcluster/fenix_taskgraph/release_promotion.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/taskcluster/fenix_taskgraph/release_promotion.py b/taskcluster/fenix_taskgraph/release_promotion.py index 1bf06112a..414e19131 100644 --- a/taskcluster/fenix_taskgraph/release_promotion.py +++ b/taskcluster/fenix_taskgraph/release_promotion.py @@ -92,9 +92,7 @@ def is_release_promotion_available(parameters): }, "next_version": { "type": "string", - "description": ( - "Next version.", - ), + "description": "Next version.", "default": "", }, },