From 9bd2b6cf303e945969f44be309a0974020a2d0a7 Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Sat, 23 Dec 2017 15:57:04 +0100 Subject: [PATCH] Add missing return. --- ticdesk_org/util.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ticdesk_org/util.py b/ticdesk_org/util.py index 08f8285..865adf8 100644 --- a/ticdesk_org/util.py +++ b/ticdesk_org/util.py @@ -139,3 +139,5 @@ def tex_to_pdf(latex_str): with BytesIO(latex_str) as latex_file: # Build PDF pdf = build_pdf(latex_file, texinputs=texinputs) + + return pdf -- GitLab