diff --git a/gramps/plugins/graph/gvfamilylines.py b/gramps/plugins/graph/gvfamilylines.py index dd569ff51..347de7602 100644 --- a/gramps/plugins/graph/gvfamilylines.py +++ b/gramps/plugins/graph/gvfamilylines.py @@ -839,7 +839,7 @@ class FamilyLinesReport(Report): label += name if birthStr or deathStr: - label += ' %s(' % lineDelimiter + label += '%s(' % lineDelimiter if birthStr: label += '%s' % birthStr label += ' - ' @@ -849,7 +849,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 += ' - '