From bedb37ca6b22ab8e17d19232e9be6c82c98d2dd5 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Mon, 22 Mar 2021 11:20:11 +0100 Subject: [PATCH] fix signerID command (#2740) --- supervisor/utils/codenotary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/utils/codenotary.py b/supervisor/utils/codenotary.py index 8efda3843..2336af920 100644 --- a/supervisor/utils/codenotary.py +++ b/supervisor/utils/codenotary.py @@ -44,7 +44,7 @@ async def vcn_validate( if org: command.extend(["--org", org]) elif signer: - command.extend(["--signer", signer]) + command.extend(["--signerID", signer]) if checksum: command.extend(["--hash", checksum])