From bf6219e3a903ad0e495080df6fddeba563d9665f Mon Sep 17 00:00:00 2001 From: Vassilii Khachaturov Date: Thu, 28 Nov 2013 23:06:04 +0200 Subject: [PATCH] 7256: extra spaces in HTML GV labels --- src/plugins/graph/GVFamilyLines.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/graph/GVFamilyLines.py b/src/plugins/graph/GVFamilyLines.py index 93db40c10..e82ee7665 100644 --- a/src/plugins/graph/GVFamilyLines.py +++ b/src/plugins/graph/GVFamilyLines.py @@ -821,7 +821,7 @@ class FamilyLinesReport(Report): label += name if birthStr or deathStr: - label += ' %s(' % lineDelimiter + label += '%s(' % lineDelimiter if birthStr: label += '%s' % birthStr label += ' - ' @@ -831,7 +831,7 @@ class FamilyLinesReport(Report): if birthplace or deathplace: if birthplace == deathplace: deathplace = None # no need to print the same name twice - label += ' %s' % lineDelimiter + label += '%s' % lineDelimiter if birthplace: label += '%s' % birthplace if birthplace and deathplace: