CAM: fix crash in dynapath_4060 postprocessor due to fmt function expecting precision as integer

This commit is contained in:
jffmichi
2025-05-14 21:50:04 +02:00
parent 9d72b917b6
commit 82a473ee59

View File

@@ -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: