diff --git a/master.cfg b/master.cfg index d084471..7c45400 100644 --- a/master.cfg +++ b/master.cfg @@ -136,7 +136,8 @@ send to the gdb-testers mailing list.""" text += "Commit(s) tested:\n" ss_list = build.getSourceStamps () for ss in ss_list: - text += "\t%s\n" % ss.revision + for chg in ss.changes: + text += "\t%s\n" % chg.revision # URL to find more info about what went wrong. text += "Log URL(s):\n" @@ -144,9 +145,10 @@ send to the gdb-testers mailing list.""" text += "\t<%sresults/%s/%s>\n" % (master_status.getBuildbotURL (), name, ss.revision) # Who's to blame? - text += "Author(s):\n" - for author in build.getResponsibleUsers(): - text += "\t%s\n" % author + text += "Author(s) (in the same order as the commits):\n" + for ss in ss_list: + for chg in ss.changes: + text += "\t%s\n" % chg.who # Including the 'regressions' log. This is the 'diff' of what # went wrong.