Turning off settings exception printing for unregistered ops.

This commit is contained in:
Markus Lampert
2018-08-25 20:21:09 -07:00
parent 9d7d9e8177
commit 33e3a0083e

View File

@@ -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)