Skip to content

Commit b824ed9

Browse files
authored
escaping tildes in version strings (#231)
* escaping tildes in version strings
1 parent c197e25 commit b824ed9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gardenlinux/github/release_notes/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def compare_apt_repo_versions(previous_version, current_version):
4444
output += "|---------|--------------------|-------------------|\n"
4545

4646
for pkg in pkg_diffs:
47-
output += f"|{pkg[0]} | {pkg[1] if pkg[1] is not None else '-'} | {pkg[2] if pkg[2] is not None else '-'} |\n"
47+
output += f"|{pkg[0]} | `{pkg[1] if pkg[1] is not None else '-'}` | `{pkg[2] if pkg[2] is not None else '-'}` |\n"
4848
return output
4949

5050

0 commit comments

Comments
 (0)