From 916e94bdc3c414fae4a1d95bd573173acfd42de4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julio=20S=C3=A1nchez?= Date: Fri, 14 Oct 2005 08:28:29 +0000 Subject: [PATCH] * src/ChooseParents.py: give unknown sex to the new parent, so that guessing works svn: r5318 --- gramps2/ChangeLog | 4 ++++ gramps2/src/ChooseParents.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index ad4b33e39..a949a2ed5 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,7 @@ +2005-10-14 Julio Sanchez + * src/ChooseParents.py: give unknown sex to the new parent, so that + guessing works + 2005-10-13 Don Allingham * various: add explict calls to garbage collection diff --git a/gramps2/src/ChooseParents.py b/gramps2/src/ChooseParents.py index e04b12475..3daef0959 100644 --- a/gramps2/src/ChooseParents.py +++ b/gramps2/src/ChooseParents.py @@ -626,7 +626,7 @@ class ChooseParents: class to create a new person.""" person = RelLib.Person() - person.set_gender(RelLib.Person.MALE) + person.set_gender(RelLib.Person.UNKNOWN) try: import EditPerson