diff options
-rw-r--r-- | gemato/openpgp.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gemato/openpgp.py b/gemato/openpgp.py index c7a6a34..9cd86a6 100644 --- a/gemato/openpgp.py +++ b/gemato/openpgp.py @@ -253,9 +253,8 @@ debug-level guru keys were successfully found. Otherwise, returns false. """ # list all keys in the keyring - # (--fingerprint --fixed-list-mode are necessary for GnuPG-1.4) - exitst, out, err = self._spawn_gpg(['--with-colons', '--list-keys', - '--fingerprint', '--fixed-list-mode'], '') + exitst, out, err = self._spawn_gpg( + ['--with-colons', '--list-keys'], '') if exitst != 0: raise gemato.exceptions.OpenPGPKeyRefreshError(err.decode('utf8')) |