From fa94d49a2a306b835534bc3541885cbd66c07f4b Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Wed, 24 May 2023 22:15:41 +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 54fff62f..c87bbe06 100644 --- a/amalgamate.py +++ b/amalgamate.py @@ -74,7 +74,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 = content.replace('#include "export.h"', '') - content = content.replace('#include "pocketpy_c.h", '') + content = content.replace('#include "pocketpy_c.h"', '') f.write(content)