mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 21:52:51 +00:00
Merge pull request #17564 from ShyRed/fixbuild
Open textfile in textmode
This commit is contained in:
commit
201d2d7226
@ -74,7 +74,7 @@ def make_default_controller_mappings(target, source, env):
|
||||
platform_mappings = OrderedDict()
|
||||
for src in source:
|
||||
src_path = src.srcnode().abspath
|
||||
with open(src_path, "rb") as f:
|
||||
with open(src_path, "r") as f:
|
||||
# read mapping file and skip header
|
||||
mapping_file_lines = f.readlines()[2:]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user