From d7b6d882742bf27b6bb72e9cd9170039fa333ca0 Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Wed, 21 Jun 2017 09:18:57 -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 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"