From 3546eff73297945c1519e925c994e28d6ad523f4 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Sun, 26 Jul 2015 21:11:05 -0400 Subject: [bug] fix syntax error resulting from the previous pep8 cleanup --- client/src/leap/soledad/client/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/leap/soledad/client/api.py b/client/src/leap/soledad/client/api.py index 219be969..c437645f 100644 --- a/client/src/leap/soledad/client/api.py +++ b/client/src/leap/soledad/client/api.py @@ -213,8 +213,8 @@ class Soledad(object): soledad_assert_type(self._passphrase, unicode) def initialize(attr, val): - return getattr(self, attr, None) is None and - setattr(self, attr, val) + return (getattr(self, attr, None) is None + and setattr(self, attr, val)) initialize("_secrets_path", os.path.join( self.default_prefix, self.secrets_file_name)) -- cgit v1.2.3