diff --git a/AUTHORS.rst b/AUTHORS.rst index f09a1299d22..ed77455c6ba 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -7,10 +7,11 @@ Authors * `Lukas Reschke `_ * `Jannick Hemelhof `_ * `Olivier Paroz `_ +* `Morris Jobke `_ * `fossxplorer `_ * `Franz Dietrich `_ * `Jannick Hemelhof `_ * `Jonne Haß `_ -* `Morris Jobke `_ +* `Julius Härtl `_ * `Susinthiran Nathan `_ * `Thomas Wouters `_ \ No newline at end of file diff --git a/scripts/generate_authors.py b/scripts/generate_authors.py index 251f8f78c88..20c5233625d 100644 --- a/scripts/generate_authors.py +++ b/scripts/generate_authors.py @@ -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)