Fix to generate.authors task so that it works on Windows

This commit is contained in:
Paul Moore 2018-03-31 11:14:05 +01:00
parent 0007825733
commit 81723abb00
1 changed files with 1 additions and 1 deletions

View File

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