mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 07:53:26 +00:00
[Buildsystem] Fix encoding when reading files
This commit is contained in:
parent
99ff024f78
commit
4933fa8bf5
10 changed files with 24 additions and 24 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue