Fixed setLdsEndowment

svn: r626
This commit is contained in:
Don Allingham 2001-12-16 04:37:47 +00:00
parent 8c907dbae0
commit 0825e74659

View File

@ -1081,7 +1081,7 @@ class Person:
# This will happen when cousins marry.
if not family.Father.ancestor:
family.Father.setAncestor(value)
if (family.Mother):
if family.Mother:
if not family.Mother.ancestor:
family.Mother.setAncestor(value)
@ -1095,7 +1095,7 @@ class Person:
return self.lds_bapt
def setLdsEndowment(self,ord):
self.lds_endow = None
self.lds_endow = ord
def getLdsEndowment(self):
return self.lds_endow