Removed extra space before family names in table row

svn: r12477
This commit is contained in:
Doug Blank 2009-04-18 23:32:09 +00:00
parent a0a0e6f20a
commit ec4905b6ca

View File

@ -202,11 +202,10 @@ class SimpleTable:
elif isinstance(item, gen.lib.Family):
father = self.access.father(item)
mother = self.access.mother(item)
text = ""
if father:
text += " " + self.access.name(father)
text = self.access.name(father)
else:
text += " " + _("Unknown father")
text = _("Unknown father")
text += " " + _("and")
if mother:
text += " " + self.access.name(mother)