From 9990ec74237d889b2b1e9fb6876eb082478d1834 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 22 Dec 2020 09:02:56 -0800 Subject: [PATCH] tools: call close() explicitly in genv8constants.py PR-URL: https://github.com/nodejs/node/pull/36606 Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca --- tools/genv8constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/genv8constants.py b/tools/genv8constants.py index cb648d39ce7a18..64370ad29611c0 100755 --- a/tools/genv8constants.py +++ b/tools/genv8constants.py @@ -113,3 +113,5 @@ def out_define(): #endif /* V8_CONSTANTS_H */ """) + +outfile.close()