Skip to content

Commit

Permalink
Check that repo management succeeded
Browse files Browse the repository at this point in the history
  • Loading branch information
strugee committed Apr 9, 2019
1 parent a443e33 commit 0a7935d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qubesmanager/global_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ def _run_qrexec_repo(service, arg=''):

def _manage_repos(repolist, action):
for i in repolist:
_run_qrexec_repo('qubes.repos.' + action, i) == 'ok\n'
result = _run_qrexec_repo('qubes.repos.' + action, i)
assert result == 'ok\n'

def _handle_dom0_updates_combobox(idx):
idx += 1
Expand Down

0 comments on commit 0a7935d

Please sign in to comment.