@@ -131,7 +131,6 @@ def issue(
131
131
assignees ,
132
132
relevant_pr_number ,
133
133
relevant_pr_user ,
134
- pr_reviewer ,
135
134
):
136
135
# Open an issue about the toolstate failure.
137
136
if status == 'test-fail' :
@@ -147,11 +146,11 @@ def issue(
147
146
cc @{}, do you think you would have time to do the follow-up work?
148
147
If so, that would be great!
149
148
150
- cc @{}, the PR reviewer, and nominating for compiler team prioritization.
149
+ And nominating for compiler team prioritization.
151
150
152
151
''' ).format (
153
152
relevant_pr_number , tool , status_description ,
154
- REPOS .get (tool ), relevant_pr_user , pr_reviewer
153
+ REPOS .get (tool ), relevant_pr_user
155
154
)),
156
155
'title' : '`{}` no longer builds after {}' .format (tool , relevant_pr_number ),
157
156
'assignees' : list (assignees ),
@@ -236,7 +235,7 @@ def update_latest(
236
235
try :
237
236
issue (
238
237
tool , create_issue_for_status , MAINTAINERS .get (tool , '' ),
239
- relevant_pr_number , relevant_pr_user , pr_reviewer ,
238
+ relevant_pr_number , relevant_pr_user ,
240
239
)
241
240
except urllib2 .HTTPError as e :
242
241
# network errors will simply end up not creating an issue, but that's better
0 commit comments