# HG changeset patch # User souliane # Date 1413714688 -7200 # Node ID 84d06701f5c4475e82a99d1219f12d7f9afb5c85 # Parent c3884a63efdec3557ee6a77cdd8dccab1d6b4b45 plugin misc_imap: fixes call to log.debug with more than one argument diff -r c3884a63efde -r 84d06701f5c4 src/plugins/plugin_misc_imap.py --- a/src/plugins/plugin_misc_imap.py Sun Oct 19 11:54:07 2014 +0200 +++ b/src/plugins/plugin_misc_imap.py Sun Oct 19 12:31:28 2014 +0200 @@ -151,7 +151,7 @@ def __init__(self, host, name, profile): self.host = host self.listeners = set() - log.debug('Mailbox init (%s)', name) + log.debug('Mailbox init (%s)' % name) if name != "INBOX": raise imap4.MailboxException("Only INBOX is managed for the moment") self.mailbox = self.host.plugins["Maildir"].accessMessageBox(name, self.newMessage, profile)