mirror of
https://github.com/BlackMATov/unity-flash-tools.git
synced 2026-01-06 08:26:52 +07:00
fix incorrect close xml tag
This commit is contained in:
@@ -268,7 +268,7 @@ if (typeof Object.create != 'function') {
|
||||
ft.array_foreach(this.children, function (child) {
|
||||
str += child.content(indent + "\t") + "\n";
|
||||
});
|
||||
return str + "{0}<{1}/>".format(indent, this.name);
|
||||
return str + "{0}</{1}>".format(indent, this.name);
|
||||
} else {
|
||||
return str + "/>";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user