diff options
Diffstat (limited to 'src/leap/bitmask/mail/imap/mailbox.py')
-rw-r--r-- | src/leap/bitmask/mail/imap/mailbox.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/leap/bitmask/mail/imap/mailbox.py b/src/leap/bitmask/mail/imap/mailbox.py index cc5d5df..3a1e8c1 100644 --- a/src/leap/bitmask/mail/imap/mailbox.py +++ b/src/leap/bitmask/mail/imap/mailbox.py @@ -427,8 +427,9 @@ class IMAPMailbox(object): def log_num_msg(result): exists, recent = tuple(result) - self.log.debug("NOTIFY (%r): there are %s messages, %s recent" % ( - self.mbox_name, exists, recent)) + self.log.debug( + 'NOTIFY (%r): there are %s messages, %s recent' % ( + self.mbox_name, exists, recent)) return result d = defer.gatherResults(d_list) |