Skip to content

Commit

Permalink
fix a typeo
Browse files Browse the repository at this point in the history
  • Loading branch information
vhsantos committed Mar 17, 2020
1 parent ffed14f commit e9458a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions centreon_report_to_pdf/SMTP.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def sent_pdf_by_email():

except Exception as e:
# If have any problem..
print ("EROR: can't connect with the SMTP server")
print ("ERROR: can't connect with the SMTP server")
print (e)
sys.exit()

Expand All @@ -69,7 +69,7 @@ def sent_pdf_by_email():
try:
server.sendmail(email_from, email_to, msg.as_string())
except Exception as e:
print ("EROR: Problem sending the email")
print ("ERROR: Problem sending the email")
print (e)
server.quit()
sys.exit()
Expand Down

0 comments on commit e9458a1

Please sign in to comment.