# HG changeset patch # User Paul Boddie # Date 1384293952 -3600 # Node ID 274be4fcf983ab8289d511e4fe4c66a90609f028 # Parent f34896c7ea763eea10bb3bd5d58874310239ef5e Obtain signature information for inspected keys using the verbose mode of gpg. diff -r f34896c7ea76 -r 274be4fcf983 MoinMessage.py --- a/MoinMessage.py Mon Nov 11 23:06:22 2013 +0100 +++ b/MoinMessage.py Tue Nov 12 23:05:52 2013 +0100 @@ -393,10 +393,11 @@ """ Return a list of key details extracted from the given key block string - 's'. + 's'. Signature information is also included through the use of the gpg + verbose option. """ - text = self.run(["--with-colons", "--with-fingerprint"], s) + text = self.run(["--with-colons", "--with-fingerprint", "-v"], s) return self._getKeysFromResult(text) def _getKeysFromResult(self, text):