Commit 9ccf7cc6 authored by Sebastien Robin's avatar Sebastien Robin

crasy call of _setLastName and _setFirstName with self as first argument, fixed


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1043 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 73492b23
......@@ -164,7 +164,7 @@ etc.)."""
"""
Updates the first_name if necessary
"""
self._setFirstName(self, value)
self._setFirstName(value)
self.reindexObject()
def _setLastName(self, value):
......@@ -180,5 +180,5 @@ etc.)."""
"""
Updates the last_name if necessary
"""
self._setLastName(self, value)
self._setLastName(value)
self.reindexObject()
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