summaryrefslogtreecommitdiff
path: root/alot/helper.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2011-10-30 00:09:58 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2011-10-30 00:09:58 +0100
commit58688201ff7d25813ca48410ac73d7977b29c827 (patch)
tree3ec67d91c47d6b5346ffaa0905266ac51d624aae /alot/helper.py
parent939f30e90dc9617966356b333bff92d95ae19221 (diff)
fix: forgot to move over body text of old msg
Diffstat (limited to 'alot/helper.py')
-rw-r--r--alot/helper.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/alot/helper.py b/alot/helper.py
index bb450352..18a10d42 100644
--- a/alot/helper.py
+++ b/alot/helper.py
@@ -262,6 +262,7 @@ def attach(path, mail, filename=None):
for k in mail.keys():
newmail[k] = mail[k]
del(mail[k])
+ newmail.attach(mail)
mail = newmail
mail.attach(part)
return mail