diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-04-26 19:32:35 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-04-27 19:33:31 +0200 |
commit | 43931f3c8a5d4bbaf7f7986b3981d698d987d7a8 (patch) | |
tree | fe2fd24ff348240fefc012138f9af9c515c7d7c6 /src/leap/bitmask/core | |
parent | 13760d78fba87570c91c0a2e702980d2ec45a0ed (diff) |
[style] pep8 fixes
Diffstat (limited to 'src/leap/bitmask/core')
-rw-r--r-- | src/leap/bitmask/core/mail_services.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/leap/bitmask/core/mail_services.py b/src/leap/bitmask/core/mail_services.py index eefbbc5c..f3902031 100644 --- a/src/leap/bitmask/core/mail_services.py +++ b/src/leap/bitmask/core/mail_services.py @@ -194,10 +194,12 @@ class SoledadService(HookableService): container = self._container if container.get_instance(userid): - self.log.debug('Passing a new SRP Token to Soledad: %s' % userid) + self.log.debug( + 'Passing a new SRP Token to Soledad: %s' % userid) container.set_remote_auth_token(userid, token) else: - self.log.debug('Adding a new Soledad Instance: %s' % userid) + self.log.debug( + 'Adding a new Soledad Instance: %s' % userid) container.add_instance( userid, password, uuid=uuid, token=token) |