From d9107b3b2614414bc66a1c11f9cb0a4383765c1d Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Tue, 2 Aug 2011 08:20:54 -0400 Subject: [PATCH] remove verification_expires from person before deleting --- PLC/Persons.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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) -- 2.43.0