* src/Relationship.py: fix typo

2007-10-27 Benny Malengier <benny.malengier@gramps-project.org>


svn: r9256
This commit is contained in:
Benny Malengier 2007-10-27 09:41:52 +00:00
parent 7dbfbc803a
commit 7627efe116
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
2007-10-27 Benny Malengier <benny.malengier@gramps-project.org>
* src/Relationship.py: fix typo
2007-10-27 Benny Malengier <benny.malengier@gramps-project.org>
* src/Relationship.py: begin of extension to step and in-law
NOT finished.

View File

@ -752,7 +752,7 @@ class RelationshipCalculator:
father = db.get_person_from_handle(fhandle)
if childrel[0][1] == gen.lib.ChildRefType.BIRTH :
addstr = self.REL_FATHER
elif not self.only_birth :
elif not self.__only_birth :
addstr = self.REL_FATHER_NOTBIRTH
else :
addstr = ''
@ -767,7 +767,7 @@ class RelationshipCalculator:
mother = db.get_person_from_handle(mhandle)
if childrel[0][0] == gen.lib.ChildRefType.BIRTH :
addstr = self.REL_MOTHER
elif not self.only_birth :
elif not self.__only_birth :
addstr = self.REL_MOTHER_NOTBIRTH
else :
addstr = ''