aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/check-MAINTAINERS.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/check-MAINTAINERS.py b/contrib/check-MAINTAINERS.py
index 9f31a10..2bac67f 100755
--- a/contrib/check-MAINTAINERS.py
+++ b/contrib/check-MAINTAINERS.py
@@ -71,6 +71,14 @@ def check_group(name, lines):
print(f'Line should not start with space: "{line}"')
exit_code = 2
+ # Special-case some names
+ if line == 'James Norris':
+ continue
+
+ if '\t' not in line:
+ print(f'Name and email should be separated by tabs: "{line}"')
+ exit_code = 2
+
lines = [line + '\n' for line in lines]
sorted_lines = sorted(lines, key=sort_by_surname)
if lines != sorted_lines: