diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-12-20 12:33:02 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-12-20 12:33:02 -0300 |
commit | 460b704771d518e76cfe10cda520a1a0a688ce8c (patch) | |
tree | cb69e61c053e0ad2e6a6993cbcb68b5c589cc732 /src/leap/mail/smtp/rfc3156.py | |
parent | a008fba77abbdb571fa3990a61a21827cf77a777 (diff) | |
parent | 8547783e7fe517772d610b0ae73b0b6be6450e98 (diff) |
Merge remote-tracking branch 'refs/remotes/drebs/feature/4335_4671' into develop
Diffstat (limited to 'src/leap/mail/smtp/rfc3156.py')
-rw-r--r-- | src/leap/mail/smtp/rfc3156.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/mail/smtp/rfc3156.py b/src/leap/mail/smtp/rfc3156.py index b0288b4..9739531 100644 --- a/src/leap/mail/smtp/rfc3156.py +++ b/src/leap/mail/smtp/rfc3156.py @@ -361,7 +361,7 @@ class PGPSignature(MIMEApplication): """ def __init__(self, _data, name='signature.asc'): MIMEApplication.__init__(self, _data, 'pgp-signature', - encoder=lambda x: x, name=name) + _encoder=lambda x: x, name=name) self.add_header('Content-Description', 'OpenPGP Digital Signature') |