From 33e3a0083ebf7be35b2db85a54690146a2b2d1fb Mon Sep 17 00:00:00 2001 From: Markus Lampert Date: Sat, 25 Aug 2018 20:21:09 -0700 Subject: [PATCH] Turning off settings exception printing for unregistered ops. --- src/Mod/Path/PathScripts/PathSetupSheet.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Mod/Path/PathScripts/PathSetupSheet.py b/src/Mod/Path/PathScripts/PathSetupSheet.py index 4822b5a993..04c81d3042 100644 --- a/src/Mod/Path/PathScripts/PathSetupSheet.py +++ b/src/Mod/Path/PathScripts/PathSetupSheet.py @@ -260,9 +260,8 @@ class SetupSheet: if hasattr(self.obj, propName): setattr(obj, prop, getattr(self.obj, propName)) except Exception as exc: - PathLog.track(exc) - traceback.print_exc(exc) - pass + PathLog.info("SetupSheet has no support for {}".format(opName)) + #traceback.print_exc(exc) def Create(name = 'SetupSheet'): obj = FreeCAD.ActiveDocument.addObject('App::FeaturePython', name)