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

View File

@ -385,7 +385,11 @@ def generate_settings(filename):
def _get_authors(): def _get_authors():
"""Get a list of authors based on git commit logs.""" """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']) commits = subprocess.check_output(['git', 'log', '--format=%aN'])
authors = [corrections.get(author, author) authors = [corrections.get(author, author)
for author in commits.decode('utf-8').splitlines()] for author in commits.decode('utf-8').splitlines()]