Added the .kicad_pro-bak to the list of files to clean

This commit is contained in:
Salvador E. Tropea 2023-01-06 19:11:46 -03:00
parent f49d679b7c
commit d469d846fc
1 changed files with 2 additions and 1 deletions

View File

@ -391,7 +391,8 @@ class GS(object):
def get_pcb_and_pro_names(name):
if GS.ki5:
return [name, name.replace('kicad_pcb', 'pro')]
return [name, name.replace('kicad_pcb', 'kicad_pro'), name.replace('kicad_pcb', 'kicad_prl')]
return [name, name.replace('kicad_pcb', 'kicad_pro'), name.replace('kicad_pcb', 'kicad_prl'),
name.replace('kicad_pcb', 'kicad_pro-bak')]
@staticmethod
def remove_pcb_and_pro(name):