From ccad62d567b65637a0ed61214f6ed9f5a5972ed6 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Mon, 2 Jun 2003 18:50:11 +0000 Subject: [PATCH] Typo svn: r1636 --- gramps2/src/plugins/DetDescendantReport.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps2/src/plugins/DetDescendantReport.py b/gramps2/src/plugins/DetDescendantReport.py index 2f56e6fe4..95445bbe8 100644 --- a/gramps2/src/plugins/DetDescendantReport.py +++ b/gramps2/src/plugins/DetDescendantReport.py @@ -516,13 +516,13 @@ class DetDescendantReport(Report): for fam in person.getFamilyList(): mate = "" if person.getGender() == RelLib.Person.male: - heshe = _("He") + heshe = _("She") if fam.getMother(): mate = fam.getMother() mateName = mate.getPrimaryName().getRegularName() mateFirstName = mate.getPrimaryName().getFirstName() else: - heshe = _("She") + heshe = _("He") if fam.getFather(): mate = fam.getFather() mateName = mate.getPrimaryName().getRegularName()