From: Tony Mack Date: Tue, 2 Aug 2011 12:20:54 +0000 (-0400) Subject: remove verification_expires from person before deleting X-Git-Tag: plcapi-5.0-34~1 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;ds=sidebyside;h=d9107b3b2614414bc66a1c11f9cb0a4383765c1d;p=plcapi.git remove verification_expires from person before deleting --- diff --git a/PLC/Persons.py b/PLC/Persons.py index 8da70ef..1b66b4f 100644 --- a/PLC/Persons.py +++ b/PLC/Persons.py @@ -362,8 +362,9 @@ class Person(Row): # delete will fail if verification_expires exists and isn't validated if 'verification_expires' in self: - self['verification_expires'] = \ - self.validate_verification_expires(self['verification_expires']) + #self['verification_expires'] = \ + #self.validate_verification_expires(self['verification_expires']) + self.pop('verification_expires') # don't validate, so duplicates can be consistently removed self.sync(commit, validate=False)