[Erp5-report] r16784 - /erp5/trunk/products/ERP5SyncML/Conduit/ERP5Conduit.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Tue Oct 2 18:22:41 CEST 2007
Author: nicolas
Date: Tue Oct 2 18:22:40 2007
New Revision: 16784
URL: http://svn.erp5.org?rev=16784&view=rev
Log:
forgot params
Modified:
erp5/trunk/products/ERP5SyncML/Conduit/ERP5Conduit.py
Modified: erp5/trunk/products/ERP5SyncML/Conduit/ERP5Conduit.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5SyncML/Conduit/ERP5Conduit.py?rev=16784&r1=16783&r2=16784&view=diff
==============================================================================
--- erp5/trunk/products/ERP5SyncML/Conduit/ERP5Conduit.py (original)
+++ erp5/trunk/products/ERP5SyncML/Conduit/ERP5Conduit.py Tue Oct 2 18:22:40 2007
@@ -380,7 +380,7 @@
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':
More information about the Erp5-report
mailing list