diff options
| author | Kali Kaneko <kali@leap.se> | 2013-12-20 17:06:57 -0400 | 
|---|---|---|
| committer | Kali Kaneko <kali@leap.se> | 2013-12-20 17:06:57 -0400 | 
| commit | 4038359e8f9e46cf45c1184f5c9d40fceefa650c (patch) | |
| tree | 52c379c95a87df096519857cfaa37ada2d8af1d4 /mail/src | |
| parent | d16f8acf103da4006d190868b0b55e074632f2e9 (diff) | |
fix wrong object call
Diffstat (limited to 'mail/src')
| -rw-r--r-- | mail/src/leap/mail/imap/server.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/mail/src/leap/mail/imap/server.py b/mail/src/leap/mail/imap/server.py index d92ab9d..5672e25 100644 --- a/mail/src/leap/mail/imap/server.py +++ b/mail/src/leap/mail/imap/server.py @@ -1431,7 +1431,7 @@ class SoledadMailbox(WithMsgFields):          mbox = self._get_mbox()          key = self.LAST_UID_KEY -        count = mbox.getMessageCount() +        count = self.getMessageCount()          # XXX safety-catch. If we do get duplicates,          # we want to avoid further duplication. | 
