X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=mudpy%2Ftelnet.py;fp=mudpy%2Ftelnet.py;h=95581017616ba899eba1b925c355fb788c187d90;hp=9feac03c2d3d5fb62163788b7c20bd933b4e0048;hb=dc22daedb7bba8e79e7ec878ec16d3ce57229279;hpb=c135b310950098c192b4e8f17673604630c5fc30 diff --git a/mudpy/telnet.py b/mudpy/telnet.py index 9feac03..9558101 100644 --- a/mudpy/telnet.py +++ b/mudpy/telnet.py @@ -179,10 +179,10 @@ def negotiate_telnet_options(user): # subnegotiation options elif len_text > position + 4 and command is SB: - telopt = ord(text[position + 2]) + telopt = text[position + 2] if telopt is TELOPT_NAWS: user.columns = ( - ord(text[position + 3]) * 256 + ord(text[position + 4])) + text[position + 3] * 256 + text[position + 4]) end_subnegotiation = text.find(telnet_proto(IAC, SE), position) if end_subnegotiation > 0: text = text[:position] + text[end_subnegotiation + 2:]