From a29f2352d06fe3e871250c8eef886a17e585287c Mon Sep 17 00:00:00 2001 From: Marco Massarelli Date: Thu, 23 Nov 2023 20:11:16 +0000 Subject: [PATCH] Do not save project files after importing SES --- kibot/import_ses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibot/import_ses.py b/kibot/import_ses.py index 8777874..990e28e 100644 --- a/kibot/import_ses.py +++ b/kibot/import_ses.py @@ -29,7 +29,7 @@ def main(argv): print('Importing Specctra SES ', session_file,' for ', board_file) board = pcbnew.LoadBoard(board_file) pcbnew.ImportSpecctraSES(board, session_file) - success = pcbnew.SaveBoard(output_file, board, False) + success = pcbnew.SaveBoard(output_file, board, True) if success: print('Saved output to ', output_file) else: