Skip to content

Commit

Permalink
DOC: Remove unneeded mailmap option.
Browse files Browse the repository at this point in the history
  • Loading branch information
jseabold committed Jul 31, 2013
1 parent 5ba59d6 commit fb7b01e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/github_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def report(issues, show_urls=False):
cmd = ['git', 'log', '--oneline', since_tag]
ncommits = len(check_output(cmd).splitlines())

author_cmd = ['git', 'log', '--use-mailmap', "--format='* %aN'", since_tag]
author_cmd = ['git', 'log', "--format='* %aN'", since_tag]
all_authors = check_output(author_cmd).decode('utf-8', 'replace').splitlines()
unique_authors = sorted(set(all_authors), key=lambda s: s.lower())
print("The following %i authors contributed %i commits." % (len(unique_authors), ncommits))
Expand Down

0 comments on commit fb7b01e

Please sign in to comment.