From 389e0fa2c2dc04ba56d26b99f334a424ecf65014 Mon Sep 17 00:00:00 2001 From: Phaedrus Leeds Date: Fri, 6 May 2022 17:44:56 -0700 Subject: [PATCH] common: Fix a parenthesis typo in an error message Fixes #4878 --- common/flatpak-oci-registry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/flatpak-oci-registry.c b/common/flatpak-oci-registry.c index 2dbd46b5..77b13901 100644 --- a/common/flatpak-oci-registry.c +++ b/common/flatpak-oci-registry.c @@ -2457,7 +2457,7 @@ flatpak_oci_sign_data (GBytes *data, else if (err != GPG_ERR_NO_ERROR) { flatpak_fail_error (error, FLATPAK_ERROR_UNTRUSTED, - _("Unable to lookup key ID %s: %d)"), + _("Unable to lookup key ID %s: %d"), key_ids[i], err); return NULL; }