diff src/plugins/plugin_misc_imap.py @ 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 72f25d671368
children 3265a2639182
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)