From 0f6dbaa5b0e4300e0052462f93b3d0f4ca8a1017 Mon Sep 17 00:00:00 2001 From: matograine <matograine@zaclys.net> Date: Sat, 15 Jan 2022 15:05:55 +0100 Subject: [PATCH] [enh] fix typo in cert error message --- silkaj/cert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/silkaj/cert.py b/silkaj/cert.py index 02ecf0bf..01ba69c8 100644 --- a/silkaj/cert.py +++ b/silkaj/cert.py @@ -104,7 +104,7 @@ def pre_checks(client, issuer_pubkey, pubkey_to_certify): # Check if the certification is already in the pending certifications for pending_cert in req["pendingCerts"]: if pending_cert["from"] == issuer_pubkey: - sys.exit("Certification is currently been processed") + sys.exit("Certification is currently being processed") return issuer -- GitLab