Skip to content

Commit

Permalink
Fix typo in qubes-receive-updates
Browse files Browse the repository at this point in the history
(cherry picked from commit 31173e5)
  • Loading branch information
fepitre authored and marmarek committed Jun 7, 2020
1 parent 8cb4058 commit c89c033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dom0-updates/qubes-receive-updates
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def handle_dom0updates(updatevm):
output = p.communicate()[0].decode('ascii')
if p.returncode != 0:
raise Exception(
'Error while verifing %s signature: %s' % (f, output))
'Error while verifying %s signature: %s' % (f, output))
if not gpg_ok_regex.search(output.strip()):
raise Exception(
'Domain ' + source + ' sent not signed rpm: ' + f)
Expand Down

0 comments on commit c89c033

Please sign in to comment.