projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bdb9600
)
For bug #158658, fix the 'TypeError: int argument required' that happens in the final...
author
Zac Medico
<zmedico@gentoo.org>
Thu, 21 Dec 2006 02:36:26 +0000
(
02:36
-0000)
committer
Zac Medico
<zmedico@gentoo.org>
Thu, 21 Dec 2006 02:36:26 +0000
(
02:36
-0000)
svn path=/main/trunk/; revision=5343
pym/elog_modules/mod_mail_summary.py
patch
|
blob
|
history
diff --git
a/pym/elog_modules/mod_mail_summary.py
b/pym/elog_modules/mod_mail_summary.py
index 53628b9204cbab635b3e1c1212cc107efd64e74a..5e642f418da6e65cf4396f349bda2475a4cced42 100644
(file)
--- a/
pym/elog_modules/mod_mail_summary.py
+++ b/
pym/elog_modules/mod_mail_summary.py
@@
-29,7
+29,8
@@
def finalize(mysettings):
mysubject = mysubject.replace("${PACKAGE}", count)
mysubject = mysubject.replace("${HOST}", socket.getfqdn())
- mybody = "elog messages for the following packages generated by process %d on host %s:\n" % (count, os.getpid(), socket.getfqdn())
+ mybody = "elog messages for the following packages generated by " + \
+ "process %d on host %s:\n" % (os.getpid(), socket.getfqdn())
for cpv in _items.keys():
mybody += "- %s\n" % cpv