Family Lines Report generates empty PDFs when name [has double-quotes]

Fixes #10096
This commit is contained in:
Paul Franklin 2017-06-21 09:18:57 -07:00
parent 184eaf21cd
commit d7b6d88274

View File

@ -895,6 +895,9 @@ class FamilyLinesReport(Report):
# see if we have a table that needs to be terminated
if image_path:
label += '</TD></TR></TABLE>'
else:
# non html label is enclosed by "" so escape other "
label = label.replace('"', '\\\"')
shape = "box"
style = "solid"