X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=mudpy%2Ftelnet.py;h=8d8870c50bafcb16917482105b2cc151dc5d95d9;hp=9feac03c2d3d5fb62163788b7c20bd933b4e0048;hb=11ae0d6e7e05cffb744f7b40f37309f07696d34a;hpb=91f6b37e5fc36953cc1f3150695382d0822b0672 diff --git a/mudpy/telnet.py b/mudpy/telnet.py index 9feac03..8d8870c 100644 --- a/mudpy/telnet.py +++ b/mudpy/telnet.py @@ -1,6 +1,6 @@ """Telnet functions and constants for the mudpy engine.""" -# Copyright (c) 2004-2015 Jeremy Stanley . Permission +# Copyright (c) 2004-2017 Jeremy Stanley . Permission # to use, copy, modify, and distribute this software is granted under # terms provided in the LICENSE file distributed with this software. @@ -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:]