no need for such a verbose error message.

This commit is contained in:
b3yond 2019-01-11 15:16:37 +01:00
parent 4b8798ddea
commit 54489807da
1 changed files with 1 additions and 1 deletions

View File

@ -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():