浏览代码

Fix Stream did not contain valid UTF-8 (#282) (#332)

This fix is for some characters that were wrongly formatted because of lacking UTF-8
LumiaGG 2 年之前
父节点
当前提交
bfe9ad807e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      pynecone/compiler/utils.py

+ 1 - 1
pynecone/compiler/utils.py

@@ -302,7 +302,7 @@ def write_page(path: str, code: str):
         code: The code to write.
     """
     utils.mkdir(os.path.dirname(path))
-    with open(path, "w") as f:
+    with open(path, "w", encoding="utf-8") as f:
         f.write(code)