diff --git a/bin/update-authors.py b/bin/update-authors.py index b422c16a6..d63ea6016 100755 --- a/bin/update-authors.py +++ b/bin/update-authors.py @@ -23,7 +23,7 @@ def add_email(name, email): """ print("Adding %s <%s>" % (name, email)) with open(AUTHORS, "a+") as fd: - print(" * %s <%s>" % (name, email), file=fd) + print("- %s <%s>" % (name, email), file=fd) subprocess.check_call(["git", "commit", "-m", "Add %s to contributors" % name, AUTHORS]) def main():