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:
parent
e3871a0428
commit
ad390f75d0
1 changed files with 2 additions and 1 deletions
|
@ -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():
|
||||
|
|
Loading…
Reference in a new issue