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 | 9f2326db87bd4cfbd2f3423a6e9f1dd63aace152 (patch) | |
tree | 4b4acb3bae7f9e02866706278dadd3db0eb8324e /mail | |
parent | 452b55eb014779c7b0b4c15e85af97a129a558b5 (diff) |
fix typo on method name
Diffstat (limited to 'mail')
-rw-r--r-- | mail/src/leap/mail/imap/mailbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/src/leap/mail/imap/mailbox.py b/mail/src/leap/mail/imap/mailbox.py index 499226c..c29d572 100644 --- a/mail/src/leap/mail/imap/mailbox.py +++ b/mail/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): """ |