From 7844852204c08694c2a172fa6f65615d2c06e7c5 Mon Sep 17 00:00:00 2001 From: Caio Moreira Gomes Date: Sun, 7 May 2017 17:24:57 -0300 Subject: [PATCH] Addition of line break for PDF line separators, i've been useing it and my files where only one line. --- PyPDF2/pdf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/PyPDF2/pdf.py b/PyPDF2/pdf.py index 58f4ca6..cda9f3f 100644 --- a/PyPDF2/pdf.py +++ b/PyPDF2/pdf.py @@ -2665,6 +2665,7 @@ class PageObject(DictionaryObject): _text = operands[0] if isinstance(_text, TextStringObject): text += _text + text += "\n" elif operator == b_("T*"): text += "\n" elif operator == b_("'"):