Skip to content

Commit 67d2719

Browse files
rlehsalkinium
authored andcommitted
[tools] Improve co-author detection and add new authors
1 parent 26ebee6 commit 67d2719

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/scripts/authors.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,12 @@
5050
"Kevin Läufer": "ekiwi",
5151
"Linas Nikiperavicius": "linasnikis",
5252
"Lucas Mösch": "lmoesch",
53+
"Luiz Gili": "lgili",
5354
"Lukas Güldenstein": "gueldenstone",
5455
"Marten Junga": "Maju-Ketchup",
5556
"Martin Esser": "Scabber",
5657
"Martin Rosekeit": "thundernail",
58+
"Mattis Kieffer": "mat-kie",
5759
"Michael Thies": "mhthies",
5860
"Mike Wolfram": "mikewolfram",
5961
"Nick Sarten": "genbattle",
@@ -83,6 +85,7 @@
8385
"Tomasz Chyrowicz": "tomchy",
8486
"Tomasz Wasilczyk": "twasilczyk",
8587
"Valeriy Osipov": "SgtPepperFTW",
88+
"Victor Costa": "victorandrehc",
8689
"Vivien Henry": "lukh",
8790
"Zawadniak Pedro": "PDR5",
8891
"Álan Crístoffer": "acristoffers",
@@ -109,7 +112,7 @@ def get_author_log(since = None, until = None, handles = False, count = False):
109112
co_author_command += " --since=\"{}\"".format(since)
110113
if until is not None:
111114
co_author_command += " --until=\"{}\"".format(until)
112-
co_author_command += " | grep -v '^$' | sed -e 's/Co-authored-by: /\t/g' | sort | uniq -c"
115+
co_author_command += " | grep -v '^$' | sed -e 's/[Cc]o-authored-by: /\t/g' | sort | uniq -c"
113116
output = subprocess.Popen(co_author_command, shell=True, stdout=subprocess.PIPE)\
114117
.stdout.read().decode(locale.getpreferredencoding())
115118
for line in output.splitlines():

0 commit comments

Comments
 (0)