From ede73f4d898946a7e54634169b3605a024553315 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Tue, 2 Mar 2021 23:23:55 -0500 Subject: fix syntax error when running pacman-key --help In commit 0f75ab3224141a5e8a4fe72b48b4639c83c6316b some unbalanced quotes were added by the committer while editing an error message. Fixes FS#69865 Signed-off-by: Eli Schwartz Signed-off-by: Allan McRae --- scripts/pacman-key.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in index 35a3b4da..50342649 100644 --- a/scripts/pacman-key.sh.in +++ b/scripts/pacman-key.sh.in @@ -564,7 +564,7 @@ refresh_keys() { # if no key was found, fall back to using the keyservers (with the key fingerprint instead) if (( $? )) && ! "${GPG_PACMAN[@]}" --refresh-keys "$id"; then - error "$(gettext "Could not update key: %s") "$id" + error "$(gettext "Could not update key: %s")" "$id" ret=1 fi done -- cgit v1.2.3-54-g00ecf