[Erp5-report] r16370 - /erp5/trunk/products/ERP5Type/patches/DCWorkflow.py

nobody at svn.erp5.org nobody at svn.erp5.org
Fri Sep 14 15:13:41 CEST 2007


Author: jerome
Date: Fri Sep 14 15:13:41 2007
New Revision: 16370

URL: http://svn.erp5.org?rev=16370&view=rev
Log:
fix undefined names

Modified:
    erp5/trunk/products/ERP5Type/patches/DCWorkflow.py

Modified: erp5/trunk/products/ERP5Type/patches/DCWorkflow.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Type/patches/DCWorkflow.py?rev=16370&r1=16369&r2=16370&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Type/patches/DCWorkflow.py (original)
+++ erp5/trunk/products/ERP5Type/patches/DCWorkflow.py Fri Sep 14 15:13:41 2007
@@ -32,6 +32,7 @@
 from string import join
 import sys
 from zLOG import LOG
+from Acquisition import aq_base
 
 # Patch WorkflowUIMixin to add description on workflows
 from Products.DCWorkflow.WorkflowUIMixin import WorkflowUIMixin as WorkflowUIMixin_class
@@ -527,7 +528,7 @@
     return self.manage_properties(REQUEST,
         manage_tabs_message='%d object(s) updated.' % object_list_len)
   else:
-    return count
+    return object_list_len
 
 DCWorkflowDefinition.updateRoleMappings = updateRoleMappings
 




More information about the Erp5-report mailing list