From 4738caf31255c4f9a9f6d7ddcfa56edc0a5cf5d2 Mon Sep 17 00:00:00 2001
From: meejah <meejah@meejah.ca>
Date: Tue, 6 Oct 2015 14:11:32 -0600
Subject: [PATCH] Fix call to ready()

---
 src/allmydata/client.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/allmydata/client.py b/src/allmydata/client.py
index f86c6fc2..7013a4f2 100644
--- a/src/allmydata/client.py
+++ b/src/allmydata/client.py
@@ -519,7 +519,7 @@ class Client(node.Node, pollmixin.PollMixin):
             s.startService()
 
             # start processing the upload queue when we've connected to enough servers
-            self.connected_enough_d.addCallback(s.ready)
+            self.connected_enough_d.addCallback(lambda ign: s.ready())
 
     def _check_exit_trigger(self, exit_trigger_file):
         if os.path.exists(exit_trigger_file):
-- 
2.45.2