From b2e0a8c88401c33077192ce6285057e60e1afd74 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Wed, 16 Dec 2020 14:19:11 +0100 Subject: [PATCH] thumbnail generation --- src/paperless_text/parsers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/paperless_text/parsers.py b/src/paperless_text/parsers.py index 646c5c549..7e488ca37 100644 --- a/src/paperless_text/parsers.py +++ b/src/paperless_text/parsers.py @@ -17,8 +17,8 @@ class TextDocumentParser(DocumentParser): def read_text(): with open(document_path, 'r') as src: lines = [line.strip() for line in src.readlines()] - text = "\n".join([line for line in lines[:50]]) - return text.replace('"', "'") + text = "\n".join(lines[:50]) + return text img = Image.new("RGB", (500, 700), color="white") draw = ImageDraw.Draw(img)