From 93b8e7f0ebe1d2589d7d0d3b7aa98b739e747c19 Mon Sep 17 00:00:00 2001 From: Daniel Albers Date: Tue, 1 Apr 2025 00:50:20 +0200 Subject: [PATCH] and more --- plugins/modules/pacman_key.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/pacman_key.py b/plugins/modules/pacman_key.py index 26c8984e16..95808322a5 100644 --- a/plugins/modules/pacman_key.py +++ b/plugins/modules/pacman_key.py @@ -241,7 +241,7 @@ class PacmanKey(object): def gpg(self, args, keyring=None, **kwargs): cmd = [self.gpg_binary] if keyring: - cmd.append(f'--homedir={keyring}') + cmd.append('--homedir={keyring}'.format(keyring=keyring)) cmd.extend(['--no-permission-warning', '--with-colons', '--quiet', '--batch', '--no-tty']) return self.module.run_command(cmd + args, **kwargs)