Commit c875a25c authored by Nicolas Delaby's avatar Nicolas Delaby

forgot params

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@16784 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent a05494ec
......@@ -380,7 +380,7 @@ class ERP5Conduit(XMLSyncUtilsMixin):
if args != {} and (isConflict==0 or force) and (not simulate):
self.editDocument(object=object,**args)
# It is sometimes required to do something after an edit
if getattr(object,'manage_afterEdit'):
if getattr(object, 'manage_afterEdit', None) is not None:
object.manage_afterEdit()
if keyword == 'object':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment