changeset 338:6dcdc4cf8622

plugin maildir: fixed typo
author Goffi <goffi@goffi.org>
date Thu, 26 May 2011 16:47:39 +0200
parents 4402ac630712
children b0b773f432e5
files src/plugins/plugin_misc_maildir.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/plugins/plugin_misc_maildir.py	Thu May 26 16:47:09 2011 +0200
+++ b/src/plugins/plugin_misc_maildir.py	Thu May 26 16:47:39 2011 +0200
@@ -474,7 +474,7 @@
         Also purge the internal data of these messages
         """
         for mess_id in self.getMessageIdsWithFlag("\\Deleted"):
-            print ("Deleting %s", mess_id)
+            print ("Deleting %s" % mess_id)
             self.mailbox.deleteMessage(self.getIdxFromId(mess_id))
         self.mailbox = maildir.MaildirMailbox(self.mailbox_path) #We need to reparse the dir to have coherent indexing
         self.maildir.purgeDeleted(self.name, profile=self.profile)