- added a fix in the Excellon parser by allowing a comma in the tool definitions between the diameter and the rest
This commit is contained in:
@@ -3636,7 +3636,7 @@ class Excellon(Geometry):
|
||||
# r'(?=.*F(\d*\.?\d*))?(?=.*S(\d*\.?\d*))?' +
|
||||
# r'(?=.*B(\d*\.?\d*))?(?=.*H(\d*\.?\d*))?' +
|
||||
# r'(?=.*Z([-\+]?\d*\.?\d*))?[CFSBHT]')
|
||||
self.toolset_re = re.compile(r'^T(\d+)(?=.*C(\d*\.?\d*))?' +
|
||||
self.toolset_re = re.compile(r'^T(\d+)(?=.*C,?(\d*\.?\d*))?' +
|
||||
r'(?=.*F(\d*\.?\d*))?(?=.*S(\d*\.?\d*))?' +
|
||||
r'(?=.*B(\d*\.?\d*))?(?=.*H(\d*\.?\d*))?' +
|
||||
r'(?=.*Z([-\+]?\d*\.?\d*))?[CFSBHT]')
|
||||
|
||||
Reference in New Issue
Block a user