changeset 1245:84d06701f5c4

plugin misc_imap: fixes call to log.debug with more than one argument
author souliane <souliane@mailoo.org>
date Sun, 19 Oct 2014 12:31:28 +0200
parents c3884a63efde
children 8b891f9be183
files src/plugins/plugin_misc_imap.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)