From 7400c2373bd350dc4930f738f50f17612554565c Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 17 May 2017 17:33:10 +0200 Subject: [PATCH] Remove debugging output --- src/pretix/plugins/ticketoutputpdf/ticketoutput.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pretix/plugins/ticketoutputpdf/ticketoutput.py b/src/pretix/plugins/ticketoutputpdf/ticketoutput.py index 0c52ef5b5..88caba404 100644 --- a/src/pretix/plugins/ticketoutputpdf/ticketoutput.py +++ b/src/pretix/plugins/ticketoutputpdf/ticketoutput.py @@ -48,7 +48,6 @@ class PdfTicketOutput(BaseTicketOutput): pdfmetrics.registerFont(TTFont('Open Sans B I', finders.find('fonts/OpenSans-BoldItalic.ttf'))) for family, styles in get_fonts().items(): - print(family, finders.find(styles['regular']['truetype'])) pdfmetrics.registerFont(TTFont(family, finders.find(styles['regular']['truetype']))) pdfmetrics.registerFont(TTFont(family + ' I', finders.find(styles['italic']['truetype']))) pdfmetrics.registerFont(TTFont(family + ' B', finders.find(styles['bold']['truetype'])))