From a1d0a863058ae721b4e5b1bf93336664888582d6 Mon Sep 17 00:00:00 2001 From: smitcona Date: Tue, 7 Feb 2017 12:47:33 +0000 Subject: [PATCH] Pass ignore_initial_spaces=True as this has better clarity than separate boolean variable --- talon/quotations.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/talon/quotations.py b/talon/quotations.py index 1a8c4e8..4fc8494 100644 --- a/talon/quotations.py +++ b/talon/quotations.py @@ -482,11 +482,10 @@ def split_emails(msg): Return the corrected markers """ msg_body = _replace_link_brackets(msg) - ignore_initial_spaces = True # don't process too long messages lines = msg_body.splitlines()[:MAX_LINES_COUNT] - markers = mark_message_lines(lines, ignore_initial_spaces) + markers = mark_message_lines(lines, ignore_initial_spaces=True) markers = _mark_quoted_email_splitlines(markers, lines)