From 657792f62003fe2cf344bbe505705ede148ad0eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Calonne?= <aurel@nexedi.com> Date: Wed, 30 Apr 2008 13:06:38 +0000 Subject: [PATCH] call the send method on parent class git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@20855 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5/Document/Event.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/product/ERP5/Document/Event.py b/product/ERP5/Document/Event.py index 513e6dc9b6..3de86de125 100644 --- a/product/ERP5/Document/Event.py +++ b/product/ERP5/Document/Event.py @@ -114,5 +114,5 @@ class Event(EmailDocument, Movement): """ send_script = self._getTypeBasedMethod('send') if send_script is None: - return self.send(*args, **kw) - return send_script(*args, **kw) \ No newline at end of file + return EmailDocument.send(self, *args, **kw) + return send_script(*args, **kw) -- 2.30.9