diff options
author | Paul Moore <p.f.moore@gmail.com> | 2018-03-31 19:30:59 +0100 |
---|---|---|
committer | Paul Moore <p.f.moore@gmail.com> | 2018-03-31 19:30:59 +0100 |
commit | ad390f75d02cc49895d612717594842a1394c9bf (patch) | |
tree | 3aa64aadd33958081bbe555b4ce22b9a0edf3099 /tasks | |
parent | e3871a0428ce5195d37309b9e5776fbb065a90db (diff) | |
download | pip-ad390f75d02cc49895d612717594842a1394c9bf.tar.gz |
Fix line length in tasks/generate.py
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/generate.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tasks/generate.py b/tasks/generate.py index 18b30acdc..8e4645854 100644 --- a/tasks/generate.py +++ b/tasks/generate.py @@ -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(): |