# HG changeset patch
# User GP Orcullo <kinsamanka@gmail.com>
# Date 1675466301 -28800
# Node ID 741d0010b4b29ecdd99614ca7a6ce157451084a0
# Parent  39480d9d3d3f07e2a8e6f1f5505a8ef0d4f55fc4
fix str encoding issue

diff -r 39480d9d3d3f -r 741d0010b4b2 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()