[tool] Fix bug with missing brackets in eclipse.py

This commit is contained in:
guozhanxin 2022-01-20 14:29:38 +08:00 committed by Bernard Xiong
parent add72f1d7c
commit c811ecf998
1 changed files with 2 additions and 2 deletions

View File

@ -365,7 +365,7 @@ def UpdateProjectStructure(env, prj_name):
out = open('.project', 'w')
out.write('<?xml version="1.0" encoding="UTF-8"?>\n')
xml_indent(root)
out.write(etree.tostring(root, encoding='utf-8').decode('utf-8')
out.write(etree.tostring(root, encoding='utf-8').decode('utf-8'))
out.close()
return
@ -504,7 +504,7 @@ def UpdateCproject(env, project, excluding, reset, prj_name):
out.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n')
out.write('<?fileVersion 4.0.0?>')
xml_indent(root)
out.write(etree.tostring(root, encoding='utf-8').decode('utf-8')
out.write(etree.tostring(root, encoding='utf-8').decode('utf-8'))
out.close()