no need for such a verbose error message.
This commit is contained in:
parent
4b8798ddea
commit
54489807da
|
@ -22,7 +22,7 @@ class Mailbot(Bot):
|
||||||
try:
|
try:
|
||||||
mails = mailbox.mbox("/var/mail/" + config['mail']['mbox_user'])
|
mails = mailbox.mbox("/var/mail/" + config['mail']['mbox_user'])
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
logger.error("No mbox file found.", exc_info=True)
|
logger.error("No mbox file found.")
|
||||||
return reports
|
return reports
|
||||||
for msg in mails:
|
for msg in mails:
|
||||||
if get_date_from_header(msg['Date']) > user.get_seen_mail():
|
if get_date_from_header(msg['Date']) > user.get_seen_mail():
|
||||||
|
|
Loading…
Reference in a new issue