summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/rfc822.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/rfc822.py b/Lib/rfc822.py
index db5e0d4..0e9122f 100644
--- a/Lib/rfc822.py
+++ b/Lib/rfc822.py
@@ -93,8 +93,7 @@ class Message:
self.status = 'EOF in headers'
break
# Skip unix From name time lines
- if firstline and (line[:5] == 'From '
- or line[:6] == '>From '):
+ if firstline and line[:5] == 'From ':
continue
firstline = 0
if self.islast(line):