From 64cd25b8e1134346ee74bb00cd340f9dfc74e0d7 Mon Sep 17 00:00:00 2001 From: Vassilii Khachaturov Date: Thu, 28 Nov 2013 23:12:46 +0200 Subject: [PATCH] 7256: extra spaces in HTML GV labels --- gramps/plugins/graph/gvfamilylines.py | 4 ++-- gramps/plugins/graph/gvrelgraph.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gramps/plugins/graph/gvfamilylines.py b/gramps/plugins/graph/gvfamilylines.py index 59120b248..0b1ea1aef 100644 --- a/gramps/plugins/graph/gvfamilylines.py +++ b/gramps/plugins/graph/gvfamilylines.py @@ -840,7 +840,7 @@ class FamilyLinesReport(Report): label += name if birthStr or deathStr: - label += ' %s(' % lineDelimiter + label += '%s(' % lineDelimiter if birthStr: label += '%s' % birthStr label += ' - ' @@ -850,7 +850,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: diff --git a/gramps/plugins/graph/gvrelgraph.py b/gramps/plugins/graph/gvrelgraph.py index e1dce2431..c0e9ea548 100644 --- a/gramps/plugins/graph/gvrelgraph.py +++ b/gramps/plugins/graph/gvrelgraph.py @@ -433,7 +433,7 @@ class RelGraphReport(Report): if self.includedates: birth, death = self.get_date_strings(person) if birth or death: - label += ' %s(' % lineDelimiter + label += '%s(' % lineDelimiter if birth: label += '%s' % birth label += ' - '