aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xblogthon.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi
index 8318fdd..8d6dc50 100755
--- a/blogthon.cgi
+++ b/blogthon.cgi
@@ -200,7 +200,7 @@ if cname and ctext and ctitle:
if new_comment_mail:
msg = 'From: Blogthon\nSubject: New comment on ' + blog_title + '\n\nSomeone wrote a comment to this entry: ' + blog_url + '?p=' + re.sub(' ', '-', ctitle)
smtp = smtplib.SMTP(smtp_host)
- if smtp_user != '' and stmp_pass != '':
+ if smtp_user != '' and smtp_pass != '':
smtp.login(smtp_user, smtp_pass)
smtp.sendmail(blog_title, mail_to, msg)
smtp.quit()