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