Merge pull request #2271 from sliptonic/master

Path:  fix proxy error
This commit is contained in:
sliptonic
2019-06-19 19:46:08 -05:00
committed by GitHub

View File

@@ -803,5 +803,5 @@ def Create(name, obj=None):
'''Create(name) ... Creates and returns a Pocket operation.'''
if obj is None:
obj = FreeCAD.ActiveDocument.addObject('Path::FeaturePython', name)
obj.proxy = ObjectPocket(obj, name)
obj.Proxy = ObjectPocket(obj, name)
return obj