We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c197e25 commit b824ed9Copy full SHA for b824ed9
src/gardenlinux/github/release_notes/helpers.py
@@ -44,7 +44,7 @@ def compare_apt_repo_versions(previous_version, current_version):
44
output += "|---------|--------------------|-------------------|\n"
45
46
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"
+ output += f"|{pkg[0]} | `{pkg[1] if pkg[1] is not None else '-'}` | `{pkg[2] if pkg[2] is not None else '-'}` |\n"
48
return output
49
50
0 commit comments