From 16c8af52bb280ae959137eed11bf4385d4340f31 Mon Sep 17 00:00:00 2001 From: Mark Sapiro Date: Mon, 10 Jan 2022 19:08:45 -0800 Subject: Fix test for valid header following From_ line. --- bin/cleanarch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/cleanarch') diff --git a/bin/cleanarch b/bin/cleanarch index 9e4d2bde..01266b15 100644 --- a/bin/cleanarch +++ b/bin/cleanarch @@ -60,7 +60,7 @@ cre = re.compile(mailbox.UnixMailbox._fromlinepattern) # From RFC 2822, a header field name must contain only characters from 33-126 # inclusive, excluding colon. I.e. from oct 41 to oct 176 less oct 072. Must # use re.match() so that it's anchored at the beginning of the line. -fre = re.compile(r'[\041-\071\073-\176]+') +fre = re.compile(r'[\041-\071\073-\176]+:') -- cgit v1.2.3