Merge pull request #193 from meejah/2438.magic-folder-stable.3

Fix call to ready()
This commit is contained in:
Daira Hopwood 2015-10-08 14:07:05 +01:00
commit bfbc20f40b

View File

@ -517,7 +517,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):