diff options
author | Tomás Touceda <chiiph@leap.se> | 2014-01-20 13:11:22 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2014-01-20 13:11:22 -0300 |
commit | f2cbd92aa17566f6bdd94c59fdace81fc5b16098 (patch) | |
tree | 9b421575a1c3d41e09936d50aa2d3a44aec3b7cd /src | |
parent | 7e79576ce81ebfb055947e987355a43c8b050f0f (diff) | |
parent | a50c880f43d1aef00fd233318d9413e01fb3aa3f (diff) |
Merge remote-tracking branch 'refs/remotes/kali/bug/fix-typo-signal-unread' into develop
Diffstat (limited to 'src')
-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 b186e75..a167531 100644 --- a/src/leap/mail/imap/mailbox.py +++ b/src/leap/mail/imap/mailbox.py @@ -707,7 +707,7 @@ class SoledadMailbox(WithMsgFields, MBoxParser): # this should really be called as a final callback of # the do_STORE method... from twisted.internet import reactor - deferLater(reactor, 1, self._signal_unread_to_ui) + deferLater(reactor, 1, self.signal_unread_to_ui) return result # ISearchableMailbox |