summaryrefslogtreecommitdiffstats
path: root/editor/template_builders.py
diff options
context:
space:
mode:
authorKusok <118438257+kus04e4ek@users.noreply.github.com>2024-06-19 17:20:48 +0800
committerKusok <118438257+kus04e4ek@users.noreply.github.com>2024-06-19 23:35:03 +0800
commit0c6dbbd050866054b6758223871cf65497461364 (patch)
treed188e41ff7888544b80c0e506e6d7799dc648ced /editor/template_builders.py
parentcd87b0bf84fa530d7b86a372dd09e4d9adcfa3a5 (diff)
downloadredot-engine-0c6dbbd050866054b6758223871cf65497461364.tar.gz
Fix not using `encoding="utf-8"` when writing to files or reading from them
Co-authored-by: ChristopheClaustre <christophe.claustre.31@gmail.com>
Diffstat (limited to 'editor/template_builders.py')
-rw-r--r--editor/template_builders.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/template_builders.py b/editor/template_builders.py
index c02a2b0c65..e4fc41caf3 100644
--- a/editor/template_builders.py
+++ b/editor/template_builders.py
@@ -16,7 +16,7 @@ def parse_template(inherits, source, delimiter):
meta_prefix = delimiter + " meta-"
meta = ["name", "description", "version", "space-indent"]
- with open(source) as f:
+ with open(source, "r", encoding="utf-8") as f:
lines = f.readlines()
for line in lines:
if line.startswith(meta_prefix):