From 281e9e2828383b629b43bc3671664e5c07dc1b4f Mon Sep 17 00:00:00 2001 From: "hg42@gmx.net" Date: Sat, 1 Feb 2014 15:59:21 +0100 Subject: [PATCH] fix modifiers: root is "!", disable is "*" --HG-- extra : source : 3f4e5502a0d7b061d630ccaeee704000cf8011fb --- SolidPy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SolidPy.py b/SolidPy.py index ca95783..a05a7b1 100644 --- a/SolidPy.py +++ b/SolidPy.py @@ -209,9 +209,9 @@ def OSCString(self, protoStr): if self.debug: modStr += "#" if self.disable: - modStr += "!" - if self.root: modStr += "*" + if self.root: + modStr += "!" OSCstr = +self.tabLvl * Defaults.tab + modStr + OSCstr OSCstr += protoStr