mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-21 01:07:18 +08:00
tools: fix generate .project file error.
This commit is contained in:
parent
982ad7bcbc
commit
92476d128a
@ -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'))
|
||||
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'))
|
||||
out.write(etree.tostring(root, encoding='utf-8').decode('utf-8')
|
||||
out.close()
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user