From 12a5774ab7725323b4fda884b240632e3eb8ce43 Mon Sep 17 00:00:00 2001 From: sliptonic Date: Tue, 4 Jan 2022 17:34:09 -0600 Subject: [PATCH] newline characters --- src/Mod/Path/PathScripts/post/gcode_pre.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Path/PathScripts/post/gcode_pre.py b/src/Mod/Path/PathScripts/post/gcode_pre.py index c89a3c269a..0c9c3f35ed 100644 --- a/src/Mod/Path/PathScripts/post/gcode_pre.py +++ b/src/Mod/Path/PathScripts/post/gcode_pre.py @@ -153,7 +153,7 @@ def parse(inputstring): axis = ["X", "Y", "Z", "A", "B", "C", "U", "V", "W"] - FreeCAD.Console.PrintMessage("preprocessing...") + FreeCAD.Console.PrintMessage("preprocessing...\n") PathLog.track(inputstring) # split the input by line lines = inputstring.splitlines() @@ -191,7 +191,7 @@ def parse(inputstring): elif currcommand[0] in axis and lastcommand: output.append(lastcommand + " " + lin) - FreeCAD.Console.PrintMessage("done preprocessing.") + FreeCAD.Console.PrintMessage("done preprocessing.\n") return output