From 82a473ee599bbcfd0506c55fb641a2343c366e0e Mon Sep 17 00:00:00 2001 From: jffmichi <> Date: Wed, 14 May 2025 21:50:04 +0200 Subject: [PATCH] CAM: fix crash in dynapath_4060 postprocessor due to fmt function expecting precision as integer --- src/Mod/CAM/Path/Post/scripts/dynapath_4060_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/CAM/Path/Post/scripts/dynapath_4060_post.py b/src/Mod/CAM/Path/Post/scripts/dynapath_4060_post.py index edf4951ddd..84704c7611 100644 --- a/src/Mod/CAM/Path/Post/scripts/dynapath_4060_post.py +++ b/src/Mod/CAM/Path/Post/scripts/dynapath_4060_post.py @@ -172,7 +172,7 @@ def processArguments(argstring): SHOW_EDITOR = False print("Show editor = %r" % (SHOW_EDITOR)) if args.precision is not None: - PRECISION = args.precision + PRECISION = int(args.precision) if args.preamble is not None: PREAMBLE = args.preamble.replace("\\n", "\n") if args.postamble is not None: