diff options
| author | troido <troido@protonmail.com> | 2019-09-26 22:04:50 +0200 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2019-09-26 22:04:50 +0200 |
| commit | fd6b7dbcf3c1a6a7550e4e735b54925825889bd6 (patch) | |
| tree | 8791d6b863f863395d18efe9ba4b9371fe7d44ba /asciifarm/common/messages.py | |
| parent | 548aa5ef6a128ff561c09849e07047a978fc1c5b (diff) | |
multiple sockets can serve the same game
Diffstat (limited to 'asciifarm/common/messages.py')
| -rw-r--r-- | asciifarm/common/messages.py | 2 |
1 files changed, 1 insertions, 1 deletions
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" |
