From ded915e842e6a4135fbc5ce6110453c74192e251 Mon Sep 17 00:00:00 2001 From: brunoerg Date: Thu, 5 May 2022 13:27:11 -0300 Subject: contrib: fix dirname on `verify-commits` --- contrib/verify-commits/verify-commits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib') 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() -- cgit v1.2.3