summaryrefslogtreecommitdiff
path: root/portato/gui/windows/mailinfo.py
diff options
context:
space:
mode:
Diffstat (limited to 'portato/gui/windows/mailinfo.py')
-rw-r--r--portato/gui/windows/mailinfo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/portato/gui/windows/mailinfo.py b/portato/gui/windows/mailinfo.py
index 1b5735a..5d0a24c 100644
--- a/portato/gui/windows/mailinfo.py
+++ b/portato/gui/windows/mailinfo.py
@@ -68,8 +68,8 @@ Subject: %s
try:
server.sendmail(self.addr, self.TO, self.message)
except smtplib.SMTPRecipientsRefused, e:
- info(_("An error occurred while sending. I think we where greylisted. The error: %s") % e)
- info(_("Wait 60 seconds and try again."))
+ info(_("An error occurred while sending. I think we were greylisted. The error: %s") % e)
+ info(_("Retrying after waiting 60 seconds."))
time.sleep(60)
server.sendmail(self.addr, self.TO, self.message)
debug("Sent")