diff options
| -rw-r--r-- | client/src/leap/soledad/client/encdecpool.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/client/src/leap/soledad/client/encdecpool.py b/client/src/leap/soledad/client/encdecpool.py index a01d3b71..0954c1df 100644 --- a/client/src/leap/soledad/client/encdecpool.py +++ b/client/src/leap/soledad/client/encdecpool.py @@ -768,7 +768,8 @@ class SyncDecrypterPool(SyncEncryptDecryptPool):          async_results = self._async_results[:]          for res in async_results:              if res.ready(): -                yield self._decrypt_doc_cb(res.get())  # might raise an exception! +                # XXX: might raise an exception! +                yield self._decrypt_doc_cb(res.get())                  self._async_results.remove(res)      @defer.inlineCallbacks | 
