diff --git a/AUTHORS b/AUTHORS index 5746e7d..20ccb95 100644 --- a/AUTHORS +++ b/AUTHORS @@ -24,3 +24,5 @@ Itamar.Raviv iory Mark Blakeney Yael Mintz +Lumír 'Frenzy' Balhar +Lukas Klenk diff --git a/misc/generate_authors.py b/misc/generate_authors.py index 5836dd7..f196843 100644 --- a/misc/generate_authors.py +++ b/misc/generate_authors.py @@ -19,6 +19,11 @@ import subprocess import sys +# This is used for people who show up more than once: +deny_list = frozenset(( + 'Lumir Balhar', +)) + def drop_recurrences(iterable): s = set() @@ -37,10 +42,10 @@ def iterate_authors_by_chronological_order(branch): stdout=subprocess.PIPE, stderr=subprocess.PIPE, ) log_lines = log_call.stdout.decode('utf-8').split('\n') - - return drop_recurrences( - (line.strip().split(";")[1] for line in log_lines) - ) + + authors = tuple(line.strip().split(";")[1] for line in log_lines) + authors = (author for author in authors if author not in deny_list) + return drop_recurrences(authors) def print_authors(branch):