# HG changeset patch # User Goffi # Date 1306421259 -7200 # Node ID 6dcdc4cf862256b6351bed5491b4a27d6fbec192 # Parent 4402ac630712ec98882577eb3e2ca013bdd051c2 plugin maildir: fixed typo diff -r 4402ac630712 -r 6dcdc4cf8622 src/plugins/plugin_misc_maildir.py --- 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)