diff --git a/couchpotato/core/notifications/email/main.py b/couchpotato/core/notifications/email/main.py index 4d0b28b..c67ac97 100644 --- a/couchpotato/core/notifications/email/main.py +++ b/couchpotato/core/notifications/email/main.py @@ -33,7 +33,7 @@ class Email(Notification): try: # Open the SMTP connection, via SSL if requested - log.debug("Connecting to host %s on port %s" % (smtp_host, smtp_port)) + log.debug("Connecting to host %s on port %s" % (smtp_server, smtp_port)) log.debug("SMTP over SSL %s", ("enabled" if ssl == 1 else "disabled")) mailserver = smtplib.SMTP_SSL(smtp_server) if ssl == 1 else smtplib.SMTP(smtp_server)