From 5c984dff6ac2e263c5df524a649ea0c87c565e94 Mon Sep 17 00:00:00 2001 From: sliptonic Date: Tue, 23 Feb 2021 18:59:04 -0600 Subject: [PATCH] fix string formatting --- src/Mod/Path/PathScripts/PathDeburr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/PathScripts/PathDeburr.py b/src/Mod/Path/PathScripts/PathDeburr.py index ba530dc366..a6c24241f4 100644 --- a/src/Mod/Path/PathScripts/PathDeburr.py +++ b/src/Mod/Path/PathScripts/PathDeburr.py @@ -70,7 +70,7 @@ def toolDepthAndOffset(width, extraDepth, tool, printInfo): else: toolOffset = 0.0 if printInfo and not suppressInfo: - FreeCAD.Console.PrintMessage(translate('PathDeburr', "The selected tool has no FlatRadius and no TipDiameter property. Assuming {}\n").format("Endmill" if angle == 180 else "V-Bit")) + FreeCAD.Console.PrintMessage(translate('PathDeburr', "The selected tool has no FlatRadius and no TipDiameter property. Assuming {}\n".format("Endmill" if angle == 180 else "V-Bit"))) suppressInfo = True else: angle = 180