From 56b8ec8990499037665f92d98c92c498ffbdba18 Mon Sep 17 00:00:00 2001 From: Etoh Date: Wed, 19 Feb 2014 22:46:31 +0000 Subject: [PATCH] Re-work client drop (protocols.py) --- syncplay/protocols.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/protocols.py b/syncplay/protocols.py index f83cfa0..492a4af 100644 --- a/syncplay/protocols.py +++ b/syncplay/protocols.py @@ -67,9 +67,9 @@ class SyncClientProtocol(JSONCommandProtocol): self._client.destroyProtocol() def dropWithError(self, error): - self._client.ui.showErrorMessage(error) self._client.protocolFactory.stopRetrying() self.drop() + self._client.stop(error) def _extractHelloArguments(self, hello): username = hello["username"] if hello.has_key("username") else None