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)