From 866739fd345444f12767eb352f558f876dcdba8a Mon Sep 17 00:00:00 2001 From: Uriziel Date: Mon, 24 Dec 2012 19:14:52 +0100 Subject: [PATCH] Timeout message is more English than it was now --- syncplay/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/client.py b/syncplay/client.py index 82f9611..16ab279 100644 --- a/syncplay/client.py +++ b/syncplay/client.py @@ -108,7 +108,7 @@ class SyncplayClient(object): def checkIfConnected(self): if(self._lastGlobalUpdate and self._protocol and time.time() - self._lastGlobalUpdate > 4.1): self._lastGlobalUpdate = None - self.ui.showErrorMessage("Connection with server timeouted") + self.ui.showErrorMessage("Connection with server timed out") self._protocol.drop() return False return True