diff options
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/leap/soledad/client/encdecpool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/leap/soledad/client/encdecpool.py b/client/src/leap/soledad/client/encdecpool.py index d9a72b25..60b8d8ef 100644 --- a/client/src/leap/soledad/client/encdecpool.py +++ b/client/src/leap/soledad/client/encdecpool.py @@ -171,7 +171,7 @@ class SyncEncrypterPool(SyncEncryptDecryptPool): :type doc: SoledadDocument """ try: - self.sync_queue.put_nowait(doc) + self._sync_queue.put_nowait(doc) except multiprocessing.Queue.Full: # do not asynchronously encrypt this file if the queue is full pass |