Skip to content

Commit

Permalink
Merge pull request #461 from booxter/master
Browse files Browse the repository at this point in the history
report: Put space *after* commas, not before
  • Loading branch information
Mic92 authored Feb 3, 2025
2 parents 4e9994d + c3d1b06 commit 110f0b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixpkgs_review/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def html_pkgs_section(
for pkg in packages:
res += f" <li>{pkg.name}"
if len(pkg.aliases) > 0:
res += f" ({' ,'.join(pkg.aliases)})"
res += f" ({', '.join(pkg.aliases)})"
res += "</li>\n"
res += " </ul>\n</details>\n"
return res
Expand Down

0 comments on commit 110f0b4

Please sign in to comment.