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 Igor Rzegocki
parent f78652ac15
commit e7bd005430
1 changed files with 1 additions and 1 deletions

View File

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