Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidSpickett committed Jan 29, 2025
1 parent e17380c commit 2f773d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/utils/git/github-automation.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,13 +420,13 @@ def run(self) -> bool:
# If the PR author wrote the magic response comment.
if (
comment.user.login == pull.user.login
and self.PR_READY_COMMENT in comment.body()
and self.PR_READY_COMMENT in comment.body
):
found_author_comment = True
# Either they responded to our prompting, or knew ahead of time
# what to do, either is fine.
break
elif self.PROMPT_AUTHOR_COMMENT_TAG in comment.body():
elif self.PROMPT_AUTHOR_COMMENT_TAG in comment.body:
found_prompt_author_comment = True

if found_author_comment:
Expand Down

0 comments on commit 2f773d9

Please sign in to comment.