Skip to content
This repository was archived by the owner on Oct 10, 2022. It is now read-only.

Commit dd1d5e5

Browse files
authored
Fix release script (#74)
1 parent 3ca6238 commit dd1d5e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/release-travis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
all_pulls = [pr for pr in repo.get_pulls(state='closed', sort='updated')]
2626
all_pulls.reverse()
2727
for merged_pr in all_pulls:
28-
if pr.merge_commit_sha == commit_id:
28+
if merged_pr.merge_commit_sha == commit_id:
2929
pr = merged_pr
3030

3131

0 commit comments

Comments
 (0)