diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-03-09 14:29:24 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-03-09 14:29:24 -0600 |
commit | d9fa40f2df44d775e82332577d44de402b23611f (patch) | |
tree | f9f95b4d52fbe79a9cd1ca1b0107b14cb7c9e45b /platform_methods.py | |
parent | f28964805e44a5c068ce8fd9d1e00697fcd922dc (diff) | |
download | redot-engine-d9fa40f2df44d775e82332577d44de402b23611f.tar.gz |
Enforce `\n` eol for Python writes
• Ensure utf-8 encoding if previously unspecified
Diffstat (limited to 'platform_methods.py')
-rw-r--r-- | platform_methods.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform_methods.py b/platform_methods.py index a05298bfa5..91c1388288 100644 --- a/platform_methods.py +++ b/platform_methods.py @@ -40,7 +40,7 @@ def run_in_subprocess(builder_function): args = (target, source, filtered_env) data = dict(fn=function_name, args=args) json_path = os.path.join(os.environ["TMP"], uuid.uuid4().hex + ".json") - with open(json_path, "wt") as json_file: + with open(json_path, "wt", encoding="utf-8", newline="\n") as json_file: json.dump(data, json_file, indent=2) json_file_size = os.stat(json_path).st_size @@ -138,7 +138,7 @@ def generate_export_icons(platform_path, platform_name): # NOTE: It is safe to generate this file here, since this is still executed serially. wf = export_path + "/" + name + "_svg.gen.h" - with open(wf, "w") as svgw: + with open(wf, "w", encoding="utf-8", newline="\n") as svgw: svgw.write(svg_str) |