newline characters

This commit is contained in:
sliptonic
2022-01-04 17:34:09 -06:00
parent bfaca44221
commit f670fd3c86

View File

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