Fixed parent/child relationships on deletion of spouse

svn: r281
This commit is contained in:
Don Allingham
2001-08-02 23:05:51 +00:00
parent 0ddd838e59
commit fc5618bc76
3 changed files with 53 additions and 23 deletions

View File

@@ -20,6 +20,7 @@
from RelLib import *
from Date import *
import string
#-------------------------------------------------------------------------
#
@@ -29,7 +30,7 @@ from Date import *
def build_sort_name(person):
n = person[0]
nm = "%-25s%-30s%s" % (n.Surname,n.FirstName,n.Suffix)
return (nm,person)
return (string.upper(nm),person)
#-------------------------------------------------------------------------
#