Commit 657792f6 authored by Aurel's avatar Aurel

call the send method on parent class


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@20855 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent acb32428
......@@ -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)
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