Cleanup: minor changes to credits_git_gen.py

- Don't write 2x blank lines in between each author.
- Don't abbreviate unicodedata as it's only used once.
This commit is contained in:
Campbell Barton 2023-08-15 14:32:37 +10:00
parent 08690709db
commit 31c025c856
1 changed files with 2 additions and 3 deletions

View File

@ -10,7 +10,7 @@ Example use:
"""
from git_log import GitCommitIter
import unicodedata as ud
import re
import multiprocessing
@ -155,7 +155,7 @@ class Credits:
authors = [c.author] + cls.GIT_COMMIT_COAUTHORS_RE.findall(c.body)
# Normalize author string into canonical form, prevents duplicate credit users
authors = [ud.normalize('NFC', author) for author in authors]
authors = [unicodedata.normalize('NFC', author) for author in authors]
return [author_table.get(author, author) for author in authors]
@classmethod
@ -261,7 +261,6 @@ class Credits:
("" if not is_main_credits else
("- {:d}".format(cu.year_min) if cu.year_min == cu.year_max else
("({:d} - {:d})".format(cu.year_min, cu.year_max))))))
file.write("\n\n")
# -------------------------------------------------------------------------
# Companies, hard coded