diff options
author | brunoerg <brunoely.gc@gmail.com> | 2022-05-05 13:27:11 -0300 |
---|---|---|
committer | brunoerg <brunoely.gc@gmail.com> | 2022-05-05 13:27:11 -0300 |
commit | ded915e842e6a4135fbc5ce6110453c74192e251 (patch) | |
tree | 36af8d6ef245e1302f12b2bdf3382a4ea2442c5c /contrib | |
parent | e4478d312f908623c02728d6e0a36beddcd85d5a (diff) |
contrib: fix dirname on `verify-commits`
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/verify-commits/verify-commits.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/verify-commits/verify-commits.py b/contrib/verify-commits/verify-commits.py index 0a3346140f..2ff14c1f86 100755 --- a/contrib/verify-commits/verify-commits.py +++ b/contrib/verify-commits/verify-commits.py @@ -88,7 +88,7 @@ def main(): verified_sha512_root = f.read().splitlines()[0] with open(dirname + "/allow-revsig-commits", "r", encoding="utf8") as f: revsig_allowed = f.read().splitlines() - with open(dirname + "/allow-unclean-merge-commit", "r", encoding="utf8") as f: + with open(dirname + "/allow-unclean-merge-commits", "r", encoding="utf8") as f: unclean_merge_allowed = f.read().splitlines() with open(dirname + "/allow-incorrect-sha512-commits", "r", encoding="utf8") as f: incorrect_sha512_allowed = f.read().splitlines() |