From f9f428f4c3cb84d641095e1b3c35da6d8f1cbfe6 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 16 Apr 2015 13:26:17 +0200 Subject: [PATCH] Revert "Change of behavior when msg_body has more then 1000 lines" This reverts commit 84a83e865e0c2e2dcf36a4b1d0db1813ae64b1bf. --- talon/quotations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/talon/quotations.py b/talon/quotations.py index 8e4f141..dc77fd4 100644 --- a/talon/quotations.py +++ b/talon/quotations.py @@ -298,7 +298,7 @@ def extract_from_plain(msg_body): # don't process too long messages if len(lines) > MAX_LINES_COUNT: - lines = stripped_text.split('\n', MAX_LINES_COUNT) + return stripped_text markers = mark_message_lines(lines) lines = process_marked_lines(lines, markers)