File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff 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 >`_
Original file line number Diff line number Diff line change @@ -46,9 +46,11 @@ def get_authors_file(suffix):
4646
4747
4848def 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 )
You can’t perform that action at this time.
0 commit comments