[Erp5-report] r23685 - /erp5/trunk/products/ERP5/Tool/NotificationTool.py

nobody at svn.erp5.org nobody at svn.erp5.org
Thu Sep 18 09:29:26 CEST 2008


Author: jerome
Date: Thu Sep 18 09:29:20 2008
New Revision: 23685

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

Modified:
    erp5/trunk/products/ERP5/Tool/NotificationTool.py

Modified: erp5/trunk/products/ERP5/Tool/NotificationTool.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Tool/NotificationTool.py?rev=23685&r1=23684&r2=23685&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Tool/NotificationTool.py (original)
+++ erp5/trunk/products/ERP5/Tool/NotificationTool.py Thu Sep 18 09:29:20 2008
@@ -377,7 +377,7 @@
       # CRM is not installed - only notification by email is possible
       # So create a temp object directly
       from Products.ERP5Type.Document import newTempEvent
-      new_event = newTempEvent(context, '_')
+      new_event = newTempEvent(self, '_')
       event_list = [new_event]
 
     if event in event_list:




More information about the Erp5-report mailing list