Skip to content

Commit

Permalink
updater: fix showing output
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrbartman committed Apr 24, 2024
1 parent a304a15 commit 1b1e9b4
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 @@ -164,7 +164,7 @@ def update_admin_vm(self, admins):
stderr=subprocess.PIPE, stdout=subprocess.PIPE)
_stdout, stderr = check_updates.communicate()
if check_updates.returncode != 100:
GLib.idle_add(admin.append_text_view, stderr)
GLib.idle_add(admin.append_text_view, stderr.decode())
if check_updates.returncode != 0:
GLib.idle_add(admin.set_status, UpdateStatus.Error)
else:
Expand Down

0 comments on commit 1b1e9b4

Please sign in to comment.