From b122b73e6632555648c28b668bf4cbef7d2c7e03 Mon Sep 17 00:00:00 2001 From: Etoh Date: Wed, 19 Feb 2014 20:39:33 +0000 Subject: [PATCH] Re-work client drop (protocols.py) fix --- syncplay/protocols.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/protocols.py b/syncplay/protocols.py index 17ce907..8410f7a 100644 --- a/syncplay/protocols.py +++ b/syncplay/protocols.py @@ -68,7 +68,7 @@ class SyncClientProtocol(JSONCommandProtocol): def dropWithError(self, error): self._client.protocolFactory.stopRetrying() - self._client.drop() + self.drop() self._client.stop(error) def _extractHelloArguments(self, hello):