Patch GnuPG library to trust keys we've already got to avoid having to manually add them
This commit is contained in:
parent
f78652ac15
commit
e7bd005430
1 changed files with 1 additions and 1 deletions
|
@ -32,5 +32,5 @@ class GPGEncryptor:
|
|||
return encdata
|
||||
|
||||
def _command(self):
|
||||
cmd = "/usr/bin/gpg --homedir %s --batch --yes --pgp7 --no-secmem-warning -a -e -r %s" % (self._keyhome, ' -r '.join(self._recipients))
|
||||
cmd = "/usr/bin/gpg --trust-model always --homedir %s --batch --yes --pgp7 --no-secmem-warning -a -e -r %s" % (self._keyhome, ' -r '.join(self._recipients))
|
||||
return cmd.split()
|
||||
|
|
Loading…
Reference in a new issue