Skip to content

Commit a7b9da0

Browse files
committed
It probably needs to be a list
1 parent 0510910 commit a7b9da0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/src/jenkins-job-builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def get_platform_metadata():
3333
Creates a dict containing display name and version list for a given platform.
3434
"""
3535
return {
36-
p["id"]: {"name": p["name"], "versions": dict(p["versions"])} for p in catalog.platforms
36+
p["id"]: {"name": p["name"], "versions": list(p["versions"])} for p in catalog.platforms
3737
}
3838

3939

0 commit comments

Comments
 (0)