Skip to content

Commit 52c03bb

Browse files
committed
Changelog conversion script fix issue link (#105)
1 parent 582a6d9 commit 52c03bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/asciidoc_to_fragments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def parse_line(line, kind):
102102
fragment_dict["pr"] = ''.join([repo_link, '/pull/', number])
103103
pr_number, pr_repo = number, repo_link
104104
elif fragment_field == "issue":
105-
fragment_dict["issue"] = ''.join([repo_link, '/issue/', number])
105+
fragment_dict["issue"] = ''.join([repo_link, '/issues/', number])
106106
issue_number, issue_repo = number, repo_link
107107

108108
if pr_repo:

0 commit comments

Comments
 (0)