rename data to l-systems
This commit is contained in:
parent
d8e771ffb4
commit
979f2cb563
2 changed files with 3 additions and 1 deletions
|
@ -127,7 +127,9 @@ if __name__ == "__main__":
|
|||
xml = lsystems_xml(lsystems)
|
||||
|
||||
# Add XML model declaration
|
||||
xml_string = '<?xml-model href="data.xsd"?>\n' + element_stringifier(xml).decode()
|
||||
xml_string = (
|
||||
'<?xml-model href="l-systems.xsd"?>\n' + element_stringifier(xml).decode()
|
||||
)
|
||||
|
||||
# Output XML
|
||||
dom = xml_parser(xml_string)
|
||||
|
|
Reference in a new issue