Skip to content

Commit ded915e

Browse files
committed
contrib: fix dirname on verify-commits
1 parent e4478d3 commit ded915e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/verify-commits/verify-commits.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def main():
8888
verified_sha512_root = f.read().splitlines()[0]
8989
with open(dirname + "/allow-revsig-commits", "r", encoding="utf8") as f:
9090
revsig_allowed = f.read().splitlines()
91-
with open(dirname + "/allow-unclean-merge-commit", "r", encoding="utf8") as f:
91+
with open(dirname + "/allow-unclean-merge-commits", "r", encoding="utf8") as f:
9292
unclean_merge_allowed = f.read().splitlines()
9393
with open(dirname + "/allow-incorrect-sha512-commits", "r", encoding="utf8") as f:
9494
incorrect_sha512_allowed = f.read().splitlines()

0 commit comments

Comments
 (0)