Add a missing underscore to a call to gpg.decode_errors in Sign().
parent
1d0853f023
commit
f325e735f9
|
@ -754,7 +754,7 @@ class Sign(object):
|
|||
__bool__ = __nonzero__
|
||||
|
||||
def __str__(self):
|
||||
return self.data.decode(self.gpg.encoding, self.gpg.decode_errors)
|
||||
return self.data.decode(self.gpg.encoding, self.gpg._decode_errors)
|
||||
|
||||
def handle_status(self, key, value):
|
||||
"""Parse a status code from the attached GnuPG process.
|
||||
|
|
Loading…
Reference in New Issue