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):
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user