summaryrefslogtreecommitdiff
path: root/alot/account.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2011-12-25 14:48:12 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2011-12-25 16:43:37 +0000
commit4ff6eebcce7eecb1d9730744bf17b23837db6260 (patch)
tree1056b386276f1870e6f86d9e243c0e576834112f /alot/account.py
parent8cc8cfc381847ad7ca2d2b5649a76a01acb7fe5b (diff)
fix c/p error in Account.store_draft_mail
Diffstat (limited to 'alot/account.py')
-rw-r--r--alot/account.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/account.py b/alot/account.py
index f8da154b..d1b2246d 100644
--- a/alot/account.py
+++ b/alot/account.py
@@ -139,7 +139,7 @@ class Account(object):
:attr:`draft_box` is set.
"""
if self.draft_box is not None:
- self.store_mail(self.sent_box, mail, self.draft_tags)
+ self.store_mail(self.draft_box, mail, self.draft_tags)
def send_mail(self, mail):
"""