summaryrefslogtreecommitdiffstats
path: root/pym/portage_mail.py
diff options
context:
space:
mode:
authorMarius Mauch <genone@gentoo.org>2006-06-18 21:13:19 +0000
committerMarius Mauch <genone@gentoo.org>2006-06-18 21:13:19 +0000
commit788e901d2eb28b3b770d4f2fd9afbf50f716a289 (patch)
treefb0c00caca1d28824b24aa4f6f23e9ccab4229cb /pym/portage_mail.py
parenta1b2250dce60274fcb378d855d2c65e695e55b8f (diff)
downloadportage-788e901d2eb28b3b770d4f2fd9afbf50f716a289.tar.gz
portage-788e901d2eb28b3b770d4f2fd9afbf50f716a289.tar.bz2
portage-788e901d2eb28b3b770d4f2fd9afbf50f716a289.zip
fix typo
svn path=/main/trunk/; revision=3530
Diffstat (limited to 'pym/portage_mail.py')
-rw-r--r--pym/portage_mail.py2
1 files changed, 1 insertions, 1 deletions
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: