diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-03-11 13:05:37 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-03-11 13:20:09 -0500 |
commit | 5a6e3cbcb03c3f756344a38259f3774ddaf1a63d (patch) | |
tree | a435d3f986a1ca0e179d311ac4a5a11e2a67ea02 /core/object/make_virtuals.py | |
parent | f040a351c2f27c6b86c40c71a28babf99dd0b9bd (diff) | |
download | redot-engine-5a6e3cbcb03c3f756344a38259f3774ddaf1a63d.tar.gz |
SCons: Remove `run_in_subprocess` dependency
Diffstat (limited to 'core/object/make_virtuals.py')
-rw-r--r-- | core/object/make_virtuals.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/core/object/make_virtuals.py b/core/object/make_virtuals.py index e2a8e656b7..7a85753072 100644 --- a/core/object/make_virtuals.py +++ b/core/object/make_virtuals.py @@ -201,11 +201,5 @@ def run(target, source, env): txt += "#endif // GDVIRTUAL_GEN_H\n" - with open(target[0], "w", encoding="utf-8", newline="\n") as f: + with open(str(target[0]), "w", encoding="utf-8", newline="\n") as f: f.write(txt) - - -if __name__ == "__main__": - from platform_methods import subprocess_main - - subprocess_main(globals()) |