From fc92b2ba90e72f9c31c8a6daf886a0ddc0dbd7fd Mon Sep 17 00:00:00 2001 From: papaathome <6624189+papaathome@users.noreply.github.com> Date: Wed, 4 Jun 2025 17:28:46 +0200 Subject: [PATCH] Update PathUtils.py Removed typo ('.') at line 838 --- src/Mod/CAM/PathScripts/PathUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/CAM/PathScripts/PathUtils.py b/src/Mod/CAM/PathScripts/PathUtils.py index af7481ff04..478493aa1e 100644 --- a/src/Mod/CAM/PathScripts/PathUtils.py +++ b/src/Mod/CAM/PathScripts/PathUtils.py @@ -835,7 +835,7 @@ def getPathWithPlacement(pathobj): # check for no placement or placement POS=(0,0,0), Yaw-Pitch-Roll=(0,0,0) # isIdentity() returns True if the placement has no displacement and no rotation if not hasattr(pathobj, "Placement") or pathobj.Placement.isIdentity(): - return pathobj.Path. + return pathobj.Path return applyPlacementToPath(pathobj.Placement, pathobj.Path)