summaryrefslogtreecommitdiff
path: root/alot/account.py
diff options
context:
space:
mode:
authorpazz <patricktotzke@gmail.com>2011-07-04 22:17:50 +0100
committerpazz <patricktotzke@gmail.com>2011-07-04 22:17:50 +0100
commitfe8a21343ced8de65a9f80d8cf5b87decfa6b91d (patch)
tree9f35e6ecf42cb8f488a16b4f556be379250d4164 /alot/account.py
parented4fe8b7ac57d5dfe0505b9dc42b8606fe5ff486 (diff)
pep8
Diffstat (limited to 'alot/account.py')
-rw-r--r--alot/account.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/alot/account.py b/alot/account.py
index 021d7c05..9dfb6a2e 100644
--- a/alot/account.py
+++ b/alot/account.py
@@ -38,16 +38,16 @@ class Account:
self.mailbox = None
if sent_mailbox:
- mburl=urlparse(sent_mailbox)
- if mburl.scheme=='mbox':
+ mburl = urlparse(sent_mailbox)
+ if mburl.scheme == 'mbox':
self.mailbox = mailbox.mbox(mburl.path)
- elif mburl.scheme=='maildir':
+ elif mburl.scheme == 'maildir':
self.mailbox = mailbox.Maildir(mburl.path)
- elif mburl.scheme=='mh':
+ elif mburl.scheme == 'mh':
self.mailbox = mailbox.MH(mburl.path)
- elif mburl.scheme=='babyl':
+ elif mburl.scheme == 'babyl':
self.mailbox = mailbox.Babyl(mburl.path)
- elif mburl.scheme=='mmdf':
+ elif mburl.scheme == 'mmdf':
self.mailbox = mailbox.MMDF(mburl.path)
if self.sender_type == 'sendmail':