Browse Source

Wrong variable logged in email notification

pull/2445/head
Ruud 12 years ago
parent
commit
d023eb8f1f
  1. 2
      couchpotato/core/notifications/email/main.py

2
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)

Loading…
Cancel
Save