Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/dialog_json2xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def convertNode(nodeJSON):
#title
if 'title' in nodeJSON:
if nodeJSON['title'] != nodeJSON['dialog_node']: # WA adds title to all uploaded workspaces equal to dialog_name, this is cleanup TODO: remove the conditions when upgrading to new version of WA API
nodeXML.attrib['title'] = nodeJSON['title']
nodeXML.attrib['title'] = str(nodeJSON['title'])
#type
if 'type' in nodeJSON:
typeNodeXML = LET.Element('type')
Expand Down