summaryrefslogtreecommitdiff
path: root/alot/message.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/message.py')
-rw-r--r--alot/message.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/alot/message.py b/alot/message.py
index c4c134f5..c91209f7 100644
--- a/alot/message.py
+++ b/alot/message.py
@@ -637,7 +637,8 @@ class Envelope(object):
if only_body:
self.body = tmp
else:
- m = re.match('(?P<h>([a-zA-Z0-9_-]+:.+\n)*)\n?(?P<b>(\s*.*)*)', tmp)
+ m = re.match('(?P<h>([a-zA-Z0-9_-]+:.+\n)*)\n?(?P<b>(\s*.*)*)',
+ tmp)
assert m
d = m.groupdict()