From fe8a21343ced8de65a9f80d8cf5b87decfa6b91d Mon Sep 17 00:00:00 2001 From: pazz Date: Mon, 4 Jul 2011 22:17:50 +0100 Subject: pep8 --- alot/account.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'alot/account.py') 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': -- cgit v1.2.3