From dad96e2713bc384bff2972c4d5dbcdfb92e685fc Mon Sep 17 00:00:00 2001 From: Daniel Wood Date: Mon, 9 Sep 2019 20:53:14 +0100 Subject: [PATCH] fix 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 3d411a0cef..0219ec223f 100644 --- a/src/Mod/Path/PathScripts/post/linuxcnc_post.py +++ b/src/Mod/Path/PathScripts/post/linuxcnc_post.py @@ -54,7 +54,7 @@ parser.add_argument('--postamble', help='set commands to be issued after the las parser.add_argument('--inches', action='store_true', help='Convert output for US imperial mode (G20)') parser.add_argument('--modal', action='store_true', help='Output the Same G-command Name USE NonModal Mode') parser.add_argument('--axis-modal', action='store_true', help='Output the Same Axis Value Mode') -parser.add_argument('--no-tlo', action='store_true', help='supress tool length offset (G43) following tool changes') +parser.add_argument('--no-tlo', action='store_true', help='suppress tool length offset (G43) following tool changes') TOOLTIP_ARGS = parser.format_help()