Skip to content

Commit a2893b9

Browse files
author
Bernhard Posselt
committed
update authors
1 parent 6329e02 commit a2893b9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

AUTHORS.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ Authors
77
* `Lukas Reschke <mailto:lukas@statuscode.ch>`_
88
* `Jannick Hemelhof <mailto:clone1612@me.com>`_
99
* `Olivier Paroz <mailto:oparoz@users.noreply.github.com>`_
10+
* `Morris Jobke <mailto:hey@morrisjobke.de>`_
1011
* `fossxplorer <mailto:fossxplorer@gmail.com>`_
1112
* `Franz Dietrich <mailto:dietrich@teilgedanken.de>`_
1213
* `Jannick Hemelhof <mailto:jhemelho@vub.ac.be>`_
1314
* `Jonne Haß <mailto:me@jhass.eu>`_
14-
* `Morris Jobke <mailto:hey@morrisjobke.de>`_
15+
* `Julius Härtl <mailto:github@jus.li>`_
1516
* `Susinthiran Nathan <mailto:fossxplorer@gmail.com>`_
1617
* `Thomas Wouters <mailto:twouters@users.noreply.github.com>`_

scripts/generate_authors.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,11 @@ def get_authors_file(suffix):
4646

4747

4848
def main():
49+
ignore = {'Nextcloud bot'}
4950
authors = get_git_authors()
5051
authors = filter(lambda name: name.strip() != '', authors)
5152
authors = [parse_git_author(author) for author in authors]
53+
authors = filter(lambda author: author['name'] not in ignore, authors)
5254
text, extension = to_rst(authors)
5355
with open(get_authors_file(extension), 'w') as f:
5456
f.write(text)

0 commit comments

Comments
 (0)