GEDCOM fixes

svn: r392
This commit is contained in:
Don Allingham
2001-09-08 20:12:38 +00:00
parent 15fbfe6286
commit 90677086b9
5 changed files with 340 additions and 176 deletions

View File

@@ -28,7 +28,8 @@ import string
#
#-------------------------------------------------------------------------
def build_sort_name(n):
return "%-25s%-30s%s" % (n.Surname,n.FirstName,n.Suffix)
return "%-25s%-30s%s" % \
(string.upper(n.Surname),string.upper(n.FirstName),string.upper(n.Suffix))
#-------------------------------------------------------------------------
#