Hi Juan Pablo.
Traceback (most recent call last):
File "/usr/lib/python2.7/threading.py", line 810, in __bootstrap_inner
self.run()
File "/usr/lib/python2.7/threading.py", line 763, in run
self.__target(*self.__args, **self.__kwargs)
File "FlatCAM.py", line 2532, in on_success
app_obj.new_object("gerber", name, obj_init)
File "FlatCAM.py", line 1023, in new_object
initialize(obj, self)
File "FlatCAM.py", line 2528, in obj_init
gerber_obj.create_geometry()
File "/mnt/NasuX/Zalo/Proyectos/CNC/FlatCAM-Alpha2/camlib.py", line 820, in create_geometry
self.do_flashes()
File "/mnt/NasuX/Zalo/Proyectos/CNC/FlatCAM-Alpha2/camlib.py", line 766, in do_flashes
aperture = self.apertures[flash['aperture']]
KeyError: '19'
I've managed to "workaround" this problem by adding the line "if flash['aperture'] in self.apertures:" just before the 766 line, and moving the rest of the function inside this if.
I know that this is not a fix, just a workaround, I was in a hurry and I hadn't more time to investigate the issue.
I hope you can find this information useful.
Gonzalo.