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): elif isinstance(item, gen.lib.Family):
father = self.access.father(item) father = self.access.father(item)
mother = self.access.mother(item) mother = self.access.mother(item)
text = ""
if father: if father:
text += " " + self.access.name(father) text = self.access.name(father)
else: else:
text += " " + _("Unknown father") text = _("Unknown father")
text += " " + _("and") text += " " + _("and")
if mother: if mother:
text += " " + self.access.name(mother) text += " " + self.access.name(mother)