fix syntax error when running pacman-key --help

In commit 0f75ab3224 some unbalanced
quotes were added by the committer while editing an error message.

Fixes FS#69865

Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Eli Schwartz 2021-03-02 23:23:55 -05:00 committed by Allan McRae
parent c118a61f62
commit ede73f4d89

View file

@ -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