From fc3e41d69621e10026a2364f7847ecb4db0adc40 Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Wed, 21 Jun 2017 09:18:19 -0700 Subject: [PATCH] Family Lines Report generates empty PDFs when name [has double-quotes] Fixes #10096 --- gramps/plugins/graph/gvfamilylines.py | 3 +++ 1 file changed, 3 insertions(+) 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"