From: Marius Mauch Date: Sun, 18 Jun 2006 21:13:19 +0000 (-0000) Subject: fix typo X-Git-Tag: v2.1.1~465 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=788e901d2eb28b3b770d4f2fd9afbf50f716a289;p=portage.git fix typo svn path=/main/trunk/; revision=3530 --- diff --git a/pym/portage_mail.py b/pym/portage_mail.py index 4e56ca74c..b3b3dd86d 100644 --- a/pym/portage_mail.py +++ b/pym/portage_mail.py @@ -67,7 +67,7 @@ def send_mail(mysettings, message): # user wants to use a sendmail binary instead of smtp if mymailhost[0] == os.sep and os.path.exists(mymailhost): fd = os.popen(mymailhost+" -f "+myfrom+" "+myrecipient, "w") - fd.write(mymessage.as_string()) + fd.write(message.as_string()) if fd.close() != None: sys.stderr.write("!!! %s returned with a non-zero exit code. This generally indicates an error.\n" % mymailhost) else: