Removing Jan's email; improving the way we identify each commit's author
This commit is contained in:
parent
165357d83a
commit
1ba38b09a8
1 changed files with 3 additions and 2 deletions
|
@ -132,7 +132,8 @@ send to the gdb-testers mailing list."""
|
|||
|
||||
# Who's to blame?
|
||||
text += "Author(s):\n"
|
||||
text += "\t%s\n" % build.getResponsibleUsers()
|
||||
for author in build.getResponsibleUsers():
|
||||
text += "\t%s\n" % author
|
||||
|
||||
# Including the 'regressions' log. This is the 'diff' of what
|
||||
# went wrong.
|
||||
|
@ -158,7 +159,7 @@ send to the gdb-testers mailing list."""
|
|||
from buildbot.status import mail
|
||||
mn = mail.MailNotifier(fromaddr = "sergiodj@redhat.com",
|
||||
sendToInterestedUsers = False,
|
||||
extraRecipients = ['sergiodj@redhat.com', 'jan.kratochvil@redhat.com'],
|
||||
extraRecipients = ['sergiodj@redhat.com'],
|
||||
# extraRecipients = ['gdb-testers@sourceware.org'],
|
||||
relayhost = "smtp.corp.redhat.com",
|
||||
mode = ('failing'),
|
||||
|
|
Loading…
Reference in a new issue