Browse Source

fix

feature/balanceutils
Fr3deric 8 years ago committed by Frederic
parent
commit
9d811c9090
  1. 2
      writebml.py

2
writebml.py

@ -12,7 +12,7 @@ def writeBml(anim, filename): @@ -12,7 +12,7 @@ def writeBml(anim, filename):
root.attrib['channels'] = str(anim.dimension.channels)
header = ET.Element('header')
for (name, val) in anim.tags:
for (name, val) in anim.tags.items():
elem = ET.Element(name)
elem.text = str(val)
header.append(elem)

Loading…
Cancel
Save