From ec4905b6ca0f7ee10ae91009603ee785f6017e98 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Sat, 18 Apr 2009 23:32:09 +0000 Subject: [PATCH] Removed extra space before family names in table row svn: r12477 --- src/Simple/_SimpleTable.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Simple/_SimpleTable.py b/src/Simple/_SimpleTable.py index 2ca928784..7eac1335b 100644 --- a/src/Simple/_SimpleTable.py +++ b/src/Simple/_SimpleTable.py @@ -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)