From 477e89aba26d89b76ba8a3d2e6b56cb85a03813e Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Wed, 26 Oct 2022 21:37:19 +0200 Subject: [PATCH] Fixed syntax error. --- .github/workflows/Parameters.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Parameters.yml b/.github/workflows/Parameters.yml index b94200a..ca87f3e 100644 --- a/.github/workflows/Parameters.yml +++ b/.github/workflows/Parameters.yml @@ -143,8 +143,8 @@ jobs: 'runs-on': data['sys'][system]['runs-on'], 'shell': data['sys'][system]['shell'], 'pyicon': data['python'][version]['icon'], - 'python': currentAlphaRelease if version == currentAlphaVersion else version - 'envname' data['sys'][system]['name'] + 'python': currentAlphaRelease if version == currentAlphaVersion else version, + 'envname': data['sys'][system]['name'], } for system in systems if system in data['sys'] for version in versions @@ -156,8 +156,8 @@ jobs: 'runtime': runtime.upper(), 'shell': "msys2 {0}", 'pyicon': data['python'][currentMSYS2Version]['icon'], - 'python': currentMSYS2Version - 'envname' data['runtime'][runtime]['name'] + 'python': currentMSYS2Version, + 'envname': data['runtime'][runtime]['name'], } for runtime in systems if runtime not in data['sys'] ]