File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ def check_manual_requests(
9191 """
9292 formatted_start_date = start_date .strftime ("%Y-%m-%dT%H:%M:%S" )
9393 variables = {
94- "query" : f"type:issue created:>{ formatted_start_date } org:llvm repo:llvm-project label:infra:commit-access,infra:commit-access-request"
94+ "query" : f"type:issue created:>{ formatted_start_date } org:llvm repo:llvm-project label:infra:commit-access,infra:commit-access-request"
9595 }
9696
9797 has_next_page = True
@@ -104,7 +104,7 @@ def check_manual_requests(
104104 for issue in data ["search" ]["nodes" ]:
105105 users .extend ([user [1 :] for user in re .findall ("@[^ ,\n ]+" , issue ["body" ])])
106106 if issue ['author' ]:
107- users .append (issue [' author' ][ ' login' ])
107+ users .append (issue [" author" ][ " login" ])
108108 has_next_page = data ["search" ]["pageInfo" ]["hasNextPage" ]
109109 if has_next_page :
110110 variables ["after" ] = data ["search" ]["pageInfo" ]["endCursor" ]
You can’t perform that action at this time.
0 commit comments