Skip to content

Commit

Permalink
make output prettier
Browse files Browse the repository at this point in the history
add new line after updated package info
  • Loading branch information
piotrbartman committed Apr 8, 2024
1 parent 9c36fe9 commit 2046d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qui/updater/progress_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def _print_changes(changes: Dict[str, Dict]) -> str:
for pkg in changes["updated"]:
old_ver = str(changes["updated"][pkg]["old"])[2:-2]
new_ver = str(changes["updated"][pkg]["new"])[2:-2]
result += f'{pkg} {old_ver} -> {new_ver}'
result += f'{pkg} {old_ver} -> {new_ver}\n'
else:
result += "None\n"

Expand Down

0 comments on commit 2046d8d

Please sign in to comment.