Skip to content

Commit

Permalink
Merge pull request #8450 from esc/remove_username_from_changelog
Browse files Browse the repository at this point in the history
remove GitHub username from changelog generation script
  • Loading branch information
sklam committed Sep 28, 2022
2 parents 1a0197f + a587466 commit 96989df
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions maint/gitlog2changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ def get_pr(pr_number):


def hyperlink_user(user_obj):
return "`%s <%s>`_" % (user_obj.name
if user_obj.name is not None
else user_obj.login, user_obj.html_url)
return "`%s <%s>`_" % (user_obj.login, user_obj.html_url)


if __name__ == '__main__':
Expand Down

0 comments on commit 96989df

Please sign in to comment.