Path: fix grbl_post preamble parameter handling

This commit is contained in:
Sabin Iacob
2019-03-16 20:07:57 +02:00
committed by wmayer
parent 635fef59d1
commit 79bd762b13

View File

@@ -135,7 +135,7 @@ def processArguments(argstring):
print("Show editor = %d" % SHOW_EDITOR)
PRECISION = args.precision
if not args.preamble is None:
PREAMBLE = args.preamble
PREAMBLE = args.preamble.replace('\\n', '\n')
if not args.postamble is None:
POSTAMBLE = args.postamble.replace('\\n', '\n')
if not args.tool_change is None: