From e26953a6f3a5a57e16c4c56e66b79b37e740a449 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Tue, 10 Dec 2019 17:42:51 +0200 Subject: [PATCH] - small fix --- flatcamParsers/ParseExcellon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flatcamParsers/ParseExcellon.py b/flatcamParsers/ParseExcellon.py index 558a2cfa..cf2c6293 100644 --- a/flatcamParsers/ParseExcellon.py +++ b/flatcamParsers/ParseExcellon.py @@ -790,7 +790,7 @@ class Excellon(Geometry): # ## Units and number format # ## match = self.units_re.match(eline) if match: - self.units = self.units = {"METRIC": "MM", "INCH": "IN"}[match.group(1)] + self.units = {"METRIC": "MM", "INCH": "IN"}[match.group(1)] self.zeros = match.group(2) # "T" or "L". Might be empty self.excellon_format = match.group(3) if self.excellon_format: