[Fix] resedit: Data wasn't closing file.

This commit is contained in:
Allanis 2013-04-20 15:37:10 +01:00
parent c08740dc5a
commit 39b63ce669

View File

@ -93,6 +93,7 @@ def save(xmlfile, data, basetag, tag, has_name=True, do_array=None, do_special=N
fp = open(xmlfile, "w")
xml.writexml(fp, "", "", "", "UTF-8")
fp.close()
xml.unlink()