Do not save project files after importing SES

This commit is contained in:
Marco Massarelli 2023-11-23 20:11:16 +00:00
parent 95000c1744
commit a29f2352d0
1 changed files with 1 additions and 1 deletions

View File

@ -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: