diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-03-13 11:49:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-13 11:49:58 +0100 |
commit | 4287c7822b8aa06b069e42b44b9aa73396db62f5 (patch) | |
tree | 2db4764933bbf252b8ba0007816527265f4dd79d /core/SCsub | |
parent | 6e491ff283b7cfa90a1e27e96edb0b7c9dececa6 (diff) | |
parent | 272ecddb2859e3c184886bc2d142e2e329b8ae83 (diff) |
Merge pull request #17440 from viktor-ferenczi/issue-5042
Properly closing all files in Python build code
Diffstat (limited to 'core/SCsub')
-rw-r--r-- | core/SCsub | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/core/SCsub b/core/SCsub index 1545bc8aeb..383aaf0e12 100644 --- a/core/SCsub +++ b/core/SCsub @@ -18,9 +18,8 @@ gd_cpp = '#include "project_settings.h"\n' gd_cpp += gd_inc gd_cpp += "void ProjectSettings::register_global_defaults() {\n" + gd_call + "\n}\n" -f = open("global_defaults.gen.cpp", "w") -f.write(gd_cpp) -f.close() +with open("global_defaults.gen.cpp", "w") as f: + f.write(gd_cpp) # Generate AES256 script encryption key @@ -47,9 +46,8 @@ if ("SCRIPT_AES256_ENCRYPTION_KEY" in os.environ): txt = "0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0" print("Invalid AES256 encryption key, not 64 bits hex: " + e) -f = open("script_encryption_key.gen.cpp", "w") -f.write("#include \"project_settings.h\"\nuint8_t script_encryption_key[32]={" + txt + "};\n") -f.close() +with open("script_encryption_key.gen.cpp", "w") as f: + f.write("#include \"project_settings.h\"\nuint8_t script_encryption_key[32]={" + txt + "};\n") # Add required thirdparty code. Header paths are hardcoded, we don't need to append |