Skip to content

Commit

Permalink
corrected a string format
Browse files Browse the repository at this point in the history
  • Loading branch information
j4321 committed Oct 10, 2016
1 parent 7b8be6c commit 481e238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checkmailslib/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def check_mailbox(self, box):
self.after_cancel(timeout_id)
if self.notif != _("Checking...") + "/n":
notif = self.notif
notif += "%s : %i, " % (box, _("Timed out, reconnecting"))
notif += "%s : %s, " % (box, _("Timed out, reconnecting"))
Popen(["notify-send", "-i", IMAGE2, _("Unread mails"), notif])
nbtot = 0
for nb in self.nb_unread.values():
Expand Down

0 comments on commit 481e238

Please sign in to comment.