diff options
author | Kali Kaneko <kali@leap.se> | 2015-02-20 16:07:49 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2015-02-20 16:37:03 -0400 |
commit | b46fbeda9ea33d1dad01af7f74b9856dd32cf855 (patch) | |
tree | 9ec76a5c876a44941128a706baef2c9752d9ebe1 /src/leap/mail/imap | |
parent | 209d433d92d867b9fb6df6b444930ce96804b060 (diff) |
fix typo on method name
Diffstat (limited to 'src/leap/mail/imap')
-rw-r--r-- | src/leap/mail/imap/mailbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/mail/imap/mailbox.py b/src/leap/mail/imap/mailbox.py index 499226c..c29d572 100644 --- a/src/leap/mail/imap/mailbox.py +++ b/src/leap/mail/imap/mailbox.py @@ -322,7 +322,7 @@ class IMAPMailbox(object): :return: a deferred that will be triggered with the UID of the added message. """ - return self.collection.add_raw_msg(message, flags, date) + return self.collection.add_raw_message(message, flags, date) def notify_new(self, *args): """ |