From 1377bb4cea6c2fa8198e74831c1b8e4e0c0b34e9 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Tue, 4 Aug 2015 19:22:58 -0400 Subject: [bug] Soledad._crypto has to be initialized earlier before sqlcipher backend, or the attribute is not found. this is a leftover of the recent refactor --- client/src/leap/soledad/client/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client') diff --git a/client/src/leap/soledad/client/api.py b/client/src/leap/soledad/client/api.py index 101c235e..303dde12 100644 --- a/client/src/leap/soledad/client/api.py +++ b/client/src/leap/soledad/client/api.py @@ -196,9 +196,9 @@ class Soledad(object): # The following can raise BootstrapSequenceError, that will be # propagated upwards. self._init_secrets() - self._init_u1db_sqlcipher_backend() self._crypto = SoledadCrypto(self._secrets.remote_storage_secret) + self._init_u1db_sqlcipher_backend() if syncable: self._init_u1db_syncer() -- cgit v1.2.3