diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-03-24 18:02:56 +0100 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-03-24 18:02:56 +0100 |
commit | 4933fa8bf5119e605e53f06a632cfabfcd991032 (patch) | |
tree | 0eb064aba5a7a044c0d9813dfb6df27ebe0d3001 /glsl_builders.py | |
parent | 99ff024f78f65ba0bc54fb409cfeca43ba2008fe (diff) | |
download | redot-engine-4933fa8bf5119e605e53f06a632cfabfcd991032.tar.gz |
[Buildsystem] Fix encoding when reading files
Diffstat (limited to 'glsl_builders.py')
-rw-r--r-- | glsl_builders.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/glsl_builders.py b/glsl_builders.py index fd90e9a6c0..5a17e3ca7f 100644 --- a/glsl_builders.py +++ b/glsl_builders.py @@ -38,7 +38,7 @@ class RDHeaderStruct: def include_file_in_rd_header(filename: str, header_data: RDHeaderStruct, depth: int) -> RDHeaderStruct: - with open(filename, "r") as fs: + with open(filename, "r", encoding="utf-8") as fs: line = fs.readline() while line: @@ -172,7 +172,7 @@ class RAWHeaderStruct: def include_file_in_raw_header(filename: str, header_data: RAWHeaderStruct, depth: int) -> None: - with open(filename, "r") as fs: + with open(filename, "r", encoding="utf-8") as fs: line = fs.readline() while line: |