From e6d78cda9931ce6ed03ae5ef280af9324b5f4ad1 Mon Sep 17 00:00:00 2001 From: Etoh Date: Wed, 19 Feb 2014 22:47:44 +0000 Subject: [PATCH] Undo 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 8410f7a..c8efaf5 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