Skip to content

Commit 481e238

Browse files
committed
corrected a string format
1 parent 7b8be6c commit 481e238

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

checkmailslib/check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ def check_mailbox(self, box):
326326
self.after_cancel(timeout_id)
327327
if self.notif != _("Checking...") + "/n":
328328
notif = self.notif
329-
notif += "%s : %i, " % (box, _("Timed out, reconnecting"))
329+
notif += "%s : %s, " % (box, _("Timed out, reconnecting"))
330330
Popen(["notify-send", "-i", IMAGE2, _("Unread mails"), notif])
331331
nbtot = 0
332332
for nb in self.nb_unread.values():

0 commit comments

Comments
 (0)