Skip to content

Commit

Permalink
Merge pull request #2370 from karlcow/2369/1
Browse files Browse the repository at this point in the history
Fixes #2369 - Fixes the Issue URL in changelog tool
  • Loading branch information
Mike Taylor authored Apr 6, 2018
2 parents 326e8af + 02a0bf5 commit 124f14a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def create_changelog(json_response):
for issue in json_response:
title = issue['title']
number = issue['number']
url = issue['url']
url = issue['html_url']
loglines += LINE_TEMPLATE.format(title=title, url=url, number=number)
return loglines

Expand Down

0 comments on commit 124f14a

Please sign in to comment.