ignoring some KiCad specific records

some minor KiCad workarounds
This commit is contained in:
rusefi 2017-02-06 07:26:02 -05:00
parent 9383b6820c
commit f50afa6bfb
1 changed files with 5 additions and 0 deletions

View File

@ -714,6 +714,11 @@ class Job:
# as T01 and sometimes as T1. We canonicalize to T01.
currtool = 'T%02d' % int(currtool[1:])
# KiCad specific fixes
if currtool == 'T00':
continue
# end KiCad fixes
# Diameter will be obtained from embedded tool definition, local tool list or if not found, the global tool list
try:
diam = self.xdiam[currtool]