From 3b097a360f1e4d462b88258d461b75a4c530bf40 Mon Sep 17 00:00:00 2001 From: Markus Lampert Date: Thu, 17 Aug 2017 14:19:15 -0700 Subject: [PATCH] Added support for comments to opensbp --- src/Mod/Path/PathScripts/post/opensbp_post.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Mod/Path/PathScripts/post/opensbp_post.py b/src/Mod/Path/PathScripts/post/opensbp_post.py index a1a8382275..4d49ebfc17 100644 --- a/src/Mod/Path/PathScripts/post/opensbp_post.py +++ b/src/Mod/Path/PathScripts/post/opensbp_post.py @@ -345,6 +345,8 @@ def parse(pathobj): output += scommands[command](c) if c.Parameters: CurrentState.update(c.Parameters) + elif command[0] == '(': + output += "' " + command + "\n" else: print("I don't know what the hell the command: ",end='') print(command + " means. Maybe I should support it.")