Add a missing underscore to a call to gpg.decode_errors in Sign().

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-04-16 23:44:36 +00:00
parent 1d0853f023
commit f325e735f9
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 1 additions and 1 deletions

View File

@ -754,7 +754,7 @@ class Sign(object):
__bool__ = __nonzero__ __bool__ = __nonzero__
def __str__(self): 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): def handle_status(self, key, value):
"""Parse a status code from the attached GnuPG process. """Parse a status code from the attached GnuPG process.