* src/ChooseParents.py: give unknown sex to the new parent, so that

guessing works


svn: r5318
This commit is contained in:
Julio Sánchez 2005-10-14 08:28:29 +00:00
parent b74de932ee
commit 916e94bdc3
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-10-14 Julio Sanchez <jsanchez@users.sourceforge.net>
* src/ChooseParents.py: give unknown sex to the new parent, so that
guessing works
2005-10-13 Don Allingham <don@gramps-project.org> 2005-10-13 Don Allingham <don@gramps-project.org>
* various: add explict calls to garbage collection * various: add explict calls to garbage collection

View File

@ -626,7 +626,7 @@ class ChooseParents:
class to create a new person.""" class to create a new person."""
person = RelLib.Person() person = RelLib.Person()
person.set_gender(RelLib.Person.MALE) person.set_gender(RelLib.Person.UNKNOWN)
try: try:
import EditPerson import EditPerson