Family Lines Report generates empty PDFs when name [has double-quotes]
Fixes #10096
This commit is contained in:
parent
184eaf21cd
commit
d7b6d88274
@ -895,6 +895,9 @@ class FamilyLinesReport(Report):
|
|||||||
# see if we have a table that needs to be terminated
|
# see if we have a table that needs to be terminated
|
||||||
if image_path:
|
if image_path:
|
||||||
label += '</TD></TR></TABLE>'
|
label += '</TD></TR></TABLE>'
|
||||||
|
else:
|
||||||
|
# non html label is enclosed by "" so escape other "
|
||||||
|
label = label.replace('"', '\\\"')
|
||||||
|
|
||||||
shape = "box"
|
shape = "box"
|
||||||
style = "solid"
|
style = "solid"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user