diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/src/leap/soledad/client/_blobs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/leap/soledad/client/_blobs.py b/client/src/leap/soledad/client/_blobs.py index e0326378..34ce8f4a 100644 --- a/client/src/leap/soledad/client/_blobs.py +++ b/client/src/leap/soledad/client/_blobs.py @@ -151,7 +151,8 @@ class BlobManager(object): """ def __init__(self, local_path, remote, key, secret, user): - self.local = SQLiteBlobBackend(local_path, key) + if local_path: + self.local = SQLiteBlobBackend(local_path, key) self.remote = remote self.secret = secret self.user = user |