From 6e9f2125bb10a239925ef32168813e6a83e0aa0e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Wobst?= Date: Sun, 14 Jul 2013 11:35:04 +0000 Subject: [PATCH] fix pdf header git-svn-id: http://svn.code.sf.net/p/pyx/code/branches/py3k/pyx@3409 a4f5e268-e194-4f32-bce1-d30804cbbcc5 --- pyx/pdfwriter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyx/pdfwriter.py b/pyx/pdfwriter.py index ef755f03..66bb87f0 100644 --- a/pyx/pdfwriter.py +++ b/pyx/pdfwriter.py @@ -317,7 +317,7 @@ class PDFwriter: registry.add(catalog) file = writer.writer(file) - file.write_bytes(b"%%PDF-1.4\n%%\xc3\xb6\xc3\xa9\n") + file.write_bytes(b"%PDF-1.4\n%\xc3\xb6\xc3\xa9\n") registry.write(file, self, catalog) file.close() -- 2.11.4.GIT