From 9cc7cf05ecaf46c07998ec326bb24d2dc1e96fe4 Mon Sep 17 00:00:00 2001 From: sliptonic Date: Sat, 6 Jan 2018 12:17:14 -0600 Subject: [PATCH] path: fix help message typo --- src/Mod/Path/PathScripts/post/linuxcnc_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/PathScripts/post/linuxcnc_post.py b/src/Mod/Path/PathScripts/post/linuxcnc_post.py index df052ae006..564536cb23 100644 --- a/src/Mod/Path/PathScripts/post/linuxcnc_post.py +++ b/src/Mod/Path/PathScripts/post/linuxcnc_post.py @@ -52,7 +52,7 @@ parser.add_argument('--line-numbers', action='store_true', help='prefix with lin parser.add_argument('--no-line-numbers', action='store_true', help='don\'t prefix with line numbers (default)') parser.add_argument('--show-editor', action='store_true', help='pop up editor before writing output (default)') parser.add_argument('--no-show-editor', action='store_true', help='don\'t pop up editor before writing output') -parser.add_argument('--precision', default='3', help='number of digits of precision, default=4') +parser.add_argument('--precision', default='3', help='number of digits of precision, default=3') parser.add_argument('--preamble', help='set commands to be issued before the first command, default="G17\nG90"') parser.add_argument('--postamble', help='set commands to be issued after the last command, default="M05\nG17 G90\nM2"') parser.add_argument('--inches', action='store_true', help='Convert output for US imperial mode (G20)')