From 3a0afbbfad548f5336915b710c8990bda67e4d4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20Gr=C3=A4uler?= Date: Tue, 3 Oct 2017 21:17:07 +0200 Subject: [PATCH] Set slots to empty list by default --- syncrypt/backends/binary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncrypt/backends/binary.py b/syncrypt/backends/binary.py index ac5f13a..689a18f 100644 --- a/syncrypt/backends/binary.py +++ b/syncrypt/backends/binary.py @@ -757,7 +757,7 @@ def __init__(self): self.concurrency = None self._monitor_task = None - self.slots = None + self.slots = [] self.loop = None def init(self):