summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2011-08-19 11:35:25 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2011-08-19 11:35:25 +0100
commit459c0e5b2e53a2334cc2690b0d08883c1128f814 (patch)
tree7a2b87d21795879870e6baad90c5ebffbb3911c7 /alot
parentea3916eaef3bcc0b2df6b36b849a46254767d828 (diff)
fixed c/p leftovers
Diffstat (limited to 'alot')
-rw-r--r--alot/account.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/account.py b/alot/account.py
index 58640d38..cd5a7d04 100644
--- a/alot/account.py
+++ b/alot/account.py
@@ -59,7 +59,7 @@ class Account:
self.sent_box = None
if sent_box:
- mburl = urlparse(sent_mailbox)
+ mburl = urlparse(sent_box)
if mburl.scheme == 'mbox':
self.sent_box = mailbox.mbox(mburl.path)
elif mburl.scheme == 'maildir':
@@ -73,7 +73,7 @@ class Account:
self.draft_box = None
if draft_box:
- mburl = urlparse(sent_mailbox)
+ mburl = urlparse(draft_box)
if mburl.scheme == 'mbox':
self.draft_box = mailbox.mbox(mburl.path)
elif mburl.scheme == 'maildir':