diff options
author | Marius Mauch <genone@gentoo.org> | 2006-06-18 21:13:19 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2006-06-18 21:13:19 +0000 |
commit | 788e901d2eb28b3b770d4f2fd9afbf50f716a289 (patch) | |
tree | fb0c00caca1d28824b24aa4f6f23e9ccab4229cb | |
parent | a1b2250dce60274fcb378d855d2c65e695e55b8f (diff) | |
download | portage-788e901d2eb28b3b770d4f2fd9afbf50f716a289.tar.gz portage-788e901d2eb28b3b770d4f2fd9afbf50f716a289.tar.bz2 portage-788e901d2eb28b3b770d4f2fd9afbf50f716a289.zip |
fix typo
svn path=/main/trunk/; revision=3530
-rw-r--r-- | pym/portage_mail.py | 2 |
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: |