Patch GnuPG library to trust keys we've already got to avoid having to manually add them

This commit is contained in:
Colin Moller 2013-06-17 17:51:31 -07:00 committed by perennate
parent 0403e47ec0
commit 91a846beb6
1 changed files with 1 additions and 1 deletions

View File

@ -30,5 +30,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()