Skip to content

Commit

Permalink
Merge pull request #1115 from xzzy/master2
Browse files Browse the repository at this point in the history
Fix spacer in pdf
  • Loading branch information
xzzy authored Feb 5, 2025
2 parents 8790f0c + 20f3477 commit 1ec4520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ledger/payments/pdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def _create_invoice(invoice_buffer, invoice):
elements.append(Paragraph(invoice.text, styles['Left']))
elements.append(Spacer(1, SECTION_BUFFER_HEIGHT * 2))
else:
elements.append(Paragraph(' ', styles['Left']))
elements.append(Paragraph('&nbsp', styles['Left']))
elements.append(Spacer(1, SECTION_BUFFER_HEIGHT * 2))


Expand Down

0 comments on commit 1ec4520

Please sign in to comment.