From fa33464266ebc99f4d1c52fe2175601f54134d0e Mon Sep 17 00:00:00 2001 From: Griatch Date: Sat, 26 Nov 2016 02:30:49 +0100 Subject: [PATCH] Typo fix. Formally Resolves #1122. --- evennia/server/portal/telnet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/server/portal/telnet.py b/evennia/server/portal/telnet.py index c78b0827ec..8e3f692d58 100644 --- a/evennia/server/portal/telnet.py +++ b/evennia/server/portal/telnet.py @@ -187,8 +187,8 @@ class TelnetProtocol(Telnet, StatefulTelnetProtocol, Session): # this is an ancient type of keepalive used by some # 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 to continously pop up as an unknown command. + # support for backwards compatibility. It also stops the + # NULL from continously popping up as an unknown command. data = [_IDLE_COMMAND] else: data = _RE_LINEBREAK.split(data)