From d023eb8f1f70f32a71147bd2259966e7aa6927f2 Mon Sep 17 00:00:00 2001 From: Ruud Date: Wed, 30 Oct 2013 23:09:45 +0100 Subject: [PATCH] Wrong variable logged in email notification --- couchpotato/core/notifications/email/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)