diff --git a/gramps/plugins/graph/gvfamilylines.py b/gramps/plugins/graph/gvfamilylines.py index e667ee272..e90ebb7da 100644 --- a/gramps/plugins/graph/gvfamilylines.py +++ b/gramps/plugins/graph/gvfamilylines.py @@ -844,6 +844,9 @@ class FamilyLinesReport(Report): # see if we have a table that needs to be terminated if imagePath: label += '' + else: + # non html label is enclosed by "" so escape other " + label = label.replace('"', '\\\"') shape = "box" style = "solid"