From c89c03363b5a6df29a5bb00e6b21e0397113d1b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Pierret=20=28fepitre=29?= Date: Sat, 23 May 2020 16:14:00 +0200 Subject: [PATCH] Fix typo in qubes-receive-updates (cherry picked from commit 31173e54c193235310033b1626ea867973850825) --- dom0-updates/qubes-receive-updates | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom0-updates/qubes-receive-updates b/dom0-updates/qubes-receive-updates index b1722a44..715bdfb6 100755 --- a/dom0-updates/qubes-receive-updates +++ b/dom0-updates/qubes-receive-updates @@ -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)