From fd6b7dbcf3c1a6a7550e4e735b54925825889bd6 Mon Sep 17 00:00:00 2001 From: troido Date: Thu, 26 Sep 2019 22:04:50 +0200 Subject: multiple sockets can serve the same game --- asciifarm/common/messages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asciifarm/common') diff --git a/asciifarm/common/messages.py b/asciifarm/common/messages.py index 855fe1d..5ab489b 100644 --- a/asciifarm/common/messages.py +++ b/asciifarm/common/messages.py @@ -13,7 +13,7 @@ class InvalidMessageError(Exception): self.errType = errType def toMessage(self): - return ErrorMessage(self.errType, self.desctiption) + return ErrorMessage(self.errType, self.description) class InvalidNameError(InvalidMessageError): errType = "invalidname" -- cgit