summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-09-07 19:00:17 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2015-09-07 19:00:17 +0200
commit2457359cae6715d2e198f2debd240984e789f9bb (patch)
tree24ca9534c928c5f7644bb672da9b2b523fce36ad /bin
parent1cdd8b61819e69d786f58aaf1d913be965532de5 (diff)
fix author script
Diffstat (limited to 'bin')
-rw-r--r--bin/tools/generate_authors.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/bin/tools/generate_authors.py b/bin/tools/generate_authors.py
index b92f2d56b..9354b9fec 100644
--- a/bin/tools/generate_authors.py
+++ b/bin/tools/generate_authors.py
@@ -26,7 +26,7 @@ def line_to_tuple(line):
tuples = map(line_to_tuple, contrib_lines)
tuples = filter(lambda x: len(x) > 0, tuples) # filter out empty results
tuples = filter(lambda x: 'Jenkins' not in x[1], tuples) # filter out jenkins
-tuples = sorted(tuples, key=lambda x: x[0], reverse=True)
+#tuples = sorted(tuples, key=lambda x: x[0], reverse=True)
tuples = map(lambda x: (x[1], x[2]), tuples)
authors = map(tuple_to_markdown, tuples)
authors = '\n'.join(authors)
@@ -45,6 +45,3 @@ for x in range(base_dir_diff):
contributors_file = os.path.join(base_dir, 'AUTHORS.md')
with open(contributors_file, 'w') as f:
f.write(contents)
-
-
-print(contents)