Merge same authors and regenerate authors.

This commit is contained in:
Florian Bruhin 2015-10-01 18:25:46 +02:00
parent f16cc5986c
commit 0b4cee420f
2 changed files with 6 additions and 3 deletions

View File

@ -147,12 +147,12 @@ Contributors, sorted by the number of commits in descending order:
* Artur Shaik
* Daniel
* Thorsten Wißmann
* Alexey "Averrin" Nabrodov
* ZDarian
* Peter Vilim
* John ShaggyTwoDope Jenkins
* Jimmy
* Zach-Button
* Alexey Nabrodov
* rikn00
* Patric Schmitz
* Martin Zimmermann
@ -179,7 +179,6 @@ Contributors, sorted by the number of commits in descending order:
* HalosGhost
* Gregor Pohl
* Eivind Uggedal
* Averrin
* Arseniy Seroka
* Andy Balaam
* Andreas Fischer

View File

@ -385,7 +385,11 @@ def generate_settings(filename):
def _get_authors():
"""Get a list of authors based on git commit logs."""
corrections = {'binix': 'sbinix'}
corrections = {
'binix': 'sbinix',
'Averrin': 'Alexey "Averrin" Nabrodov',
'Alexey Nabrodov': 'Alexey "Averrin" Nabrodov',
}
commits = subprocess.check_output(['git', 'log', '--format=%aN'])
authors = [corrections.get(author, author)
for author in commits.decode('utf-8').splitlines()]