1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Fix line length in tasks/generate.py

This commit is contained in:
Paul Moore 2018-03-31 19:30:59 +01:00
parent e3871a0428
commit ad390f75d0

View file

@ -9,7 +9,8 @@ def authors(ctx):
# Get our list of authors
print("[generate.authors] Collecting author names")
r = ctx.run('git log --use-mailmap --format"=%aN <%aE>"', encoding="utf-8", hide=True)
r = ctx.run('git log --use-mailmap --format"=%aN <%aE>"',
encoding="utf-8", hide=True)
authors = []
seen_authors = set()
for author in r.stdout.splitlines():