diff options
author | Folker Bernitt <fbernitt@thoughtworks.com> | 2015-09-16 10:13:12 +0200 |
---|---|---|
committer | Bruno Wagner <bwagner@riseup.net> | 2015-09-22 17:03:31 -0300 |
commit | 1a1dcbd660536ad6351c6a3746a8d8f8a6a31ef9 (patch) | |
tree | 574c077da8d4b82b79153217c77dfea45275de13 /src/leap/mail/smtp/gateway.py | |
parent | 04baa4e421d22b02b259284c3f119d8480a989fa (diff) |
[style] fix pep8 warnings
Diffstat (limited to 'src/leap/mail/smtp/gateway.py')
-rw-r--r-- | src/leap/mail/smtp/gateway.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/leap/mail/smtp/gateway.py b/src/leap/mail/smtp/gateway.py index dd110e0..c988367 100644 --- a/src/leap/mail/smtp/gateway.py +++ b/src/leap/mail/smtp/gateway.py @@ -204,7 +204,8 @@ class SMTPDelivery(object): # verify if recipient key is available in keyring def found(_): log.msg("Accepting mail for %s..." % user.dest.addrstr) - emit_async(catalog.SMTP_RECIPIENT_ACCEPTED_ENCRYPTED, user.dest.addrstr) + emit_async(catalog.SMTP_RECIPIENT_ACCEPTED_ENCRYPTED, + user.dest.addrstr) def not_found(failure): failure.trap(KeyNotFound) |