From 92007dc6141c10566820321729df2660fbae1cf7 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Wed, 24 May 2023 19:13:02 +0800 Subject: [PATCH] Update amalgamate.py --- amalgamate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amalgamate.py b/amalgamate.py index 9512eead..5886e3ef 100644 --- a/amalgamate.py +++ b/amalgamate.py @@ -73,7 +73,7 @@ for i in ["src/export.h", "c_bindings/pocketpy_c.h", "c_bindings/pocketpy_c.cpp" with open("amalgamated/pocketpy.cpp", "wt", encoding='utf-8') as f: content = '\n\n'.join(content) - content.replace('#include "export.h"', '') + content = content.replace('#include "export.h"', '') f.write(content)