projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a1b2250
)
fix typo
author
Marius Mauch
<genone@gentoo.org>
Sun, 18 Jun 2006 21:13:19 +0000
(21:13 -0000)
committer
Marius Mauch
<genone@gentoo.org>
Sun, 18 Jun 2006 21:13:19 +0000
(21:13 -0000)
svn path=/main/trunk/; revision=3530
pym/portage_mail.py
patch
|
blob
|
history
diff --git
a/pym/portage_mail.py
b/pym/portage_mail.py
index 4e56ca74c79ccd91c406ca90ad543920743b3d5e..b3b3dd86d5c390391362a1a1b09d9e57dfeccf90 100644
(file)
--- 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(m
ym
essage.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: