aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/freeze_importlib.py
diff options
context:
space:
mode:
Diffstat (limited to 'Python/freeze_importlib.py')
-rw-r--r--Python/freeze_importlib.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/freeze_importlib.py b/Python/freeze_importlib.py
index a069a0b4d20..9cce0b1e7a4 100644
--- a/Python/freeze_importlib.py
+++ b/Python/freeze_importlib.py
@@ -24,6 +24,7 @@ def main(input_path, output_path):
lines.append('};\n')
with open(output_path, 'w') as output_file:
output_file.write('\n'.join(lines))
+ output_file.write('\u0000')
if __name__ == '__main__':