Make authors a list

This commit is contained in:
Florian Bruhin 2014-06-26 20:14:05 +02:00
parent 62300a8290
commit a2c9e099f0
2 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,3 @@
Contributors, sorted by the number of commits in descending order:
Florian Bruhin
* Florian Bruhin

View File

@ -27,9 +27,9 @@ from collections import Counter
commits = subprocess.check_output(['git', 'log', '--format=%aN'])
cnt = Counter(commits.decode('utf-8').splitlines())
with open('AUTHORS', 'w', newline='\n', encoding='utf-8') as f:
with open('doc/AUTHORS.asciidoc', 'w', newline='\n', encoding='utf-8') as f:
f.write("Contributors, sorted by the number of commits in descending "
"order:\n\n")
for author in sorted(cnt, key=lambda k: cnt[k]):
f.write(author)
f.write('* ' + author)
f.write('\n')