diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-10-07 10:21:50 -0400 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-10-07 10:22:41 -0400 |
commit | 744b1c083ebe412e92daa1de459d807db226f6fc (patch) | |
tree | 060041f6f874dcdbbdbfc2c598cdcf15ef981e1b /src/leap/bitmask/mail/outgoing/service.py | |
parent | f031bcdd91a7162efd8f236e28c3da3499f78bec (diff) |
[style] pep8
Diffstat (limited to 'src/leap/bitmask/mail/outgoing/service.py')
-rw-r--r-- | src/leap/bitmask/mail/outgoing/service.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/leap/bitmask/mail/outgoing/service.py b/src/leap/bitmask/mail/outgoing/service.py index f483763..accb9e5 100644 --- a/src/leap/bitmask/mail/outgoing/service.py +++ b/src/leap/bitmask/mail/outgoing/service.py @@ -208,7 +208,8 @@ class OutgoingMail(object): :type encrypt_and_sign_result: tuple """ message, recipient = encrypt_and_sign_result - logger.info("Connecting to SMTP server %s:%s" % (self._host, self._port)) + logger.info( + 'Connecting to SMTP server %s:%s' % (self._host, self._port)) msg = message.as_string(False) # we construct a defer to pass to the ESMTPSenderFactory |