Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Don't convert pr name to string for comparison
That means the comparison will always fail since both sides are now integers
  • Loading branch information
jgraham committed Oct 2, 2020
1 parent e319b33 commit a0dba8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sync/downstream.py
Expand Up @@ -848,7 +848,7 @@ def unlanded_commits_same_files(self):
# merged and if so what the merge commit was, although in that
# case we would still not know the commit prior to merge, which
# is what we need
if commit.pr() == str(self.pr):
if commit.pr() == self.pr:
break
commits.append(commit)
return commits
Expand Down

0 comments on commit a0dba8a

Please sign in to comment.