Skip to content

Commit

Permalink
update authors
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard Posselt committed Sep 21, 2016
1 parent 6329e02 commit a2893b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ Authors
* `Lukas Reschke <mailto:lukas@statuscode.ch>`_
* `Jannick Hemelhof <mailto:clone1612@me.com>`_
* `Olivier Paroz <mailto:oparoz@users.noreply.github.com>`_
* `Morris Jobke <mailto:hey@morrisjobke.de>`_
* `fossxplorer <mailto:fossxplorer@gmail.com>`_
* `Franz Dietrich <mailto:dietrich@teilgedanken.de>`_
* `Jannick Hemelhof <mailto:jhemelho@vub.ac.be>`_
* `Jonne Haß <mailto:me@jhass.eu>`_
* `Morris Jobke <mailto:hey@morrisjobke.de>`_
* `Julius Härtl <mailto:github@jus.li>`_
* `Susinthiran Nathan <mailto:fossxplorer@gmail.com>`_
* `Thomas Wouters <mailto:twouters@users.noreply.github.com>`_
2 changes: 2 additions & 0 deletions scripts/generate_authors.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,11 @@ def get_authors_file(suffix):


def main():
ignore = {'Nextcloud bot'}
authors = get_git_authors()
authors = filter(lambda name: name.strip() != '', authors)
authors = [parse_git_author(author) for author in authors]
authors = filter(lambda author: author['name'] not in ignore, authors)
text, extension = to_rst(authors)
with open(get_authors_file(extension), 'w') as f:
f.write(text)
Expand Down

0 comments on commit a2893b9

Please sign in to comment.