From 3ebd91f309171305d905e52a6475ff8d2b393a0e Mon Sep 17 00:00:00 2001 From: Ranjan Biswas Date: Mon, 10 May 2021 10:33:24 -0400 Subject: [PATCH] pdf fix --- concordia/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concordia/views.py b/concordia/views.py index 1bfff9409..b4473ba44 100644 --- a/concordia/views.py +++ b/concordia/views.py @@ -427,7 +427,7 @@ def AccountLetterView(request): pdf.cell(80, 5, txt="By the People", ln=1, align="C") pdf.set_font("Arial", size=11) pdf.cell(140, 5, txt="Digital Content Management Section", ln=1, align="L") - pdf.cell(150, 5, txt="Library of Congress", ln=1, align="L") + pdf.cell(150, 5, txt="Library of Congress ", ln=1, align="L") pdf.output("letter.pdf", "F") with open("letter.pdf", "rb") as f: response = HttpResponse(content=f.read(), content_type="application/pdf")