diff --git a/src/Mod/Path/PathScripts/PathToolController.py b/src/Mod/Path/PathScripts/PathToolController.py index cd82c0dcee..c5c6048cdb 100644 --- a/src/Mod/Path/PathScripts/PathToolController.py +++ b/src/Mod/Path/PathScripts/PathToolController.py @@ -29,7 +29,7 @@ import Part import Path import PathScripts import PathScripts.PathLog as PathLog -import PathUtils +from . import PathUtils import xml.etree.ElementTree as xml from FreeCAD import Units @@ -246,7 +246,7 @@ class CommandPathToolController: tool.CuttingEdgeHeight = 15.0 tool.ToolType = "EndMill" tool.Material = "HighSpeedSteel" - obj.Tool = tool + obj.Tool = tool obj.ToolNumber = toolNumber PathUtils.addToJob(obj, jobname)