Removed extra space before family names in table row
svn: r12477
This commit is contained in:
parent
a0a0e6f20a
commit
ec4905b6ca
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user