diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-05-24 14:22:26 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-05-24 14:59:50 +0200 |
commit | 37b25fd88400df8cc726470b5d897111f2373b96 (patch) | |
tree | 1c76ce8afe0d788d137229f46e3b99bbed982a5f /src/leap/bitmask/mail/imap/account.py | |
parent | 0bba2d84a584396e888d1f4cd0d0011f5137ab8b (diff) |
[refactor] simplify wrapper create and add_msg
- remove premature optimization for fast-notifies. blobs will cover
that, no point in maintaning the optimization at the price of creeping
complexity.
Diffstat (limited to 'src/leap/bitmask/mail/imap/account.py')
-rw-r--r-- | src/leap/bitmask/mail/imap/account.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/leap/bitmask/mail/imap/account.py b/src/leap/bitmask/mail/imap/account.py index 9b26dba..dab8812 100644 --- a/src/leap/bitmask/mail/imap/account.py +++ b/src/leap/bitmask/mail/imap/account.py @@ -156,9 +156,7 @@ class IMAPAccount(object): """ name = normalize_mailbox(name) - # FIXME --- return failure instead of AssertionError - # See AccountTestCase... - leap_assert(name, "Need a mailbox name to create a mailbox") + assert name, "Need a mailbox name to create a mailbox" def check_it_does_not_exist(mailboxes): if name in mailboxes: |