- fixed issue #417

This commit is contained in:
Marius Stanciu 2020-05-19 00:27:24 +03:00 committed by Marius
parent 49911c2390
commit c2690abcf4
2 changed files with 2 additions and 1 deletions

View File

@ -1258,7 +1258,7 @@ class ExcellonObject(FlatCAMObj, Excellon):
return False, "Error: Milling tool is larger than hole."
def geo_init(geo_obj, app_obj):
assert geo_obj.kind == 'geometry' "Initializer expected a GeometryObject, got %s" % type(geo_obj)
assert geo_obj.kind == 'geometry', "Initializer expected a GeometryObject, got %s" % type(geo_obj)
# ## Add properties to the object

View File

@ -29,6 +29,7 @@ CHANGELOG for FlatCAM beta
- added confirmation messages for toggle of HUD, Grid, Grid Snap, Axis
- added icon in status bar for HUD; clicking on it will toggle the HUD (heads up display)
- fixes due of recent changes
- fixed issue #417
17.05.2020