get special contributors into the credits

This commit is contained in:
Tobias Diekershoff 2015-10-29 22:05:48 +01:00
parent 6799c90012
commit 3be34f82ee
2 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,7 @@ Adam Jurkiewicz
Alex Alex
Alexander Kampmann Alexander Kampmann
AlfredSK AlfredSK
Andi Stadler
André Lohan André Lohan
Anthronaut Anthronaut
Arian - Cazare Muncitori Arian - Cazare Muncitori

View File

@ -25,13 +25,14 @@ dontinclude = ['root', 'friendica', 'bavatar', 'tony baldwin', 'Taek', 'silke m'
'leberwurscht', 'abinoam', 'fabrixxm', 'FULL NAME', 'Hauke Zuehl', 'leberwurscht', 'abinoam', 'fabrixxm', 'FULL NAME', 'Hauke Zuehl',
'Michal Supler', 'michal_s', 'Manuel Pérez'] 'Michal Supler', 'michal_s', 'Manuel Pérez']
# this script is in the /util sub-directory of the friendica installation # this script is in the /util sub-directory of the friendica installation
# so the friendica path is the 0th argument of calling this script but we # so the friendica path is the 0th argument of calling this script but we
# need to remove the name of the file and the name of the directory # need to remove the name of the file and the name of the directory
path = os.path.abspath(argv[0].split('util/make_credits.py')[0]) path = os.path.abspath(argv[0].split('util/make_credits.py')[0])
print('> base directory is assumed to be: '+path) print('> base directory is assumed to be: '+path)
# a place to store contributors # a place to store contributors
contributors = [] contributors = ['Andi Stadler']
# get the contributors # get the contributors
print('> getting contributors to the friendica core repository') print('> getting contributors to the friendica core repository')
p = subprocess.Popen(['git', 'shortlog', '--no-merges', '-s'], p = subprocess.Popen(['git', 'shortlog', '--no-merges', '-s'],