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
1 changed files with 2 additions and 1 deletions

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():