From d5ff1e146ce59d4d4cb3a111f56f7fe9ad7d661f Mon Sep 17 00:00:00 2001 From: james-strauss-uwa Date: Tue, 1 Mar 2022 17:51:36 +0800 Subject: [PATCH] Fixed minor naming bug and removed redundant line --- tools/xml2palette/xml2palette.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/xml2palette/xml2palette.py b/tools/xml2palette/xml2palette.py index ce83bc09c..b71e1c6d4 100644 --- a/tools/xml2palette/xml2palette.py +++ b/tools/xml2palette/xml2palette.py @@ -835,7 +835,6 @@ def create_construct_node(type, node): ) construct_node = { - "applicationArgs": [], "category": type, "description": "A default " + type + " construct for the " + node["text"] + " component.", "fields": [], @@ -845,7 +844,7 @@ def create_construct_node(type, node): "precious": False, "sha": version, "streaming": False, - "text": "Scatter" + "/" + node["text"] + "text": type + "/" + node["text"] } if type == "Scatter" or type == "Gather":