bugfix: find default_key in sign
parent
287f188340
commit
fa8216e1f7
|
|
@ -239,7 +239,7 @@ class GPG(GPGBase):
|
|||
``$ gpg --with-colons --list-config digestname``.
|
||||
The default, if unspecified, is ``'SHA512'``.
|
||||
"""
|
||||
if 'default_key' in kwargs.items():
|
||||
if 'default_key' in kwargs:
|
||||
log.info("Signing message '%r' with keyid: %s"
|
||||
% (data, kwargs['default_key']))
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in New Issue