This commit is contained in:
Daniel Albers 2025-04-01 00:50:20 +02:00
parent ff3d426296
commit 93b8e7f0eb
No known key found for this signature in database
GPG key ID: A84EEFE67A2A182A

View file

@ -241,7 +241,7 @@ class PacmanKey(object):
def gpg(self, args, keyring=None, **kwargs): def gpg(self, args, keyring=None, **kwargs):
cmd = [self.gpg_binary] cmd = [self.gpg_binary]
if keyring: 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']) cmd.extend(['--no-permission-warning', '--with-colons', '--quiet', '--batch', '--no-tty'])
return self.module.run_command(cmd + args, **kwargs) return self.module.run_command(cmd + args, **kwargs)