From 78a6a2fc1a20cb7b22ede5414fc2fc9958e54395 Mon Sep 17 00:00:00 2001 From: BlauFeuer Date: Wed, 8 Mar 2017 00:25:33 -0500 Subject: [PATCH] comment typo --- evennia/server/portal/telnet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/server/portal/telnet.py b/evennia/server/portal/telnet.py index 691b185024..e9734f14a6 100644 --- a/evennia/server/portal/telnet.py +++ b/evennia/server/portal/telnet.py @@ -189,7 +189,7 @@ class TelnetProtocol(Telnet, StatefulTelnetProtocol, Session): # legacy clients. There should never be a reason to send a # lone NULL character so this seems to be a safe thing to # support for backwards compatibility. It also stops the - # NULL from continously popping up as an unknown command. + # NULL from continuously popping up as an unknown command. data = [_IDLE_COMMAND] else: data = _RE_LINEBREAK.split(data)