From bf8edaaf9dc6d9df9732112aa9af318b3c45eb7b Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Sat, 16 May 2020 23:57:07 -0500 Subject: [PATCH] Make sure we don't fail when loading the non-data-using release-mgmt template. --- ci/jobgenerator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/jobgenerator.py b/ci/jobgenerator.py index 1a6a24f..2120981 100755 --- a/ci/jobgenerator.py +++ b/ci/jobgenerator.py @@ -131,7 +131,7 @@ class Generator: template += text template = Template(template) - if data is not None: + if data is not None and job_type != "release-mgmt": url = data["packaging_url"] u_branch = data["packaging_branch_unstable"] s_branch = data["packaging_branch_stable"]