beremiz
Clone
Summary
Browse
Changes
Graph
fix str encoding issue
python3
2023-02-04, GP Orcullo
741d0010b4b2
Parents
39480d9d3d3f
Children
a5f58ca4629b
fix str encoding issue
1 files changed, 1 insertions(+), 1 deletions(-)
+1
-1
CodeFileTreeNode.py
--- a/CodeFileTreeNode.py Thu Nov 10 23:21:22 2022 +0800
+++ b/CodeFileTreeNode.py Sat Feb 04 07:18:21 2023 +0800
@@ -193,7 +193,7 @@
self.CodeFile,
pretty_print=True,
xml_declaration=True,
- encoding='utf-8'))
+ encoding='utf-8').decode())
xmlfile.close()
self.MarkCodeFileAsSaved()