correctly output xmlns attribute

This commit is contained in:
jan 2023-07-13 14:10:31 -07:00
parent 701400d442
commit e47bff3204

View File

@ -41,7 +41,7 @@ def write_wmap(wmap: Map, el_root: ElementTree.Element) -> None:
map_fields = [ff.name for ff in fields(wmap)] map_fields = [ff.name for ff in fields(wmap)]
for field in map_fields: for field in map_fields:
if field[0].isupper(): if field[0].isupper() or field == 'xmlns':
val = getattr(wmap, field) val = getattr(wmap, field)
if val is None: if val is None:
continue continue