X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=mudpy%2Ftelnet.py;h=245f44a18fa2fdb77fb10ff6c46ca50878bac2de;hp=8d8870c50bafcb16917482105b2cc151dc5d95d9;hb=c677014e04ec3818187eff679bf378b9be735c15;hpb=4cefc874cdfa5bdfccb38ae4e6175bd3893e9637 diff --git a/mudpy/telnet.py b/mudpy/telnet.py index 8d8870c..245f44a 100644 --- a/mudpy/telnet.py +++ b/mudpy/telnet.py @@ -1,6 +1,6 @@ """Telnet functions and constants for the mudpy engine.""" -# Copyright (c) 2004-2017 Jeremy Stanley . Permission +# Copyright (c) 2004-2018 Jeremy Stanley . Permission # to use, copy, modify, and distribute this software is granted under # terms provided in the LICENSE file distributed with this software. @@ -127,7 +127,7 @@ def negotiate_telnet_options(user): # replace a double (literal) IAC if there's an LF later if command is IAC: - if text.find("\n", position) > 0: + if text.find(b"\n", position) > 0: position += 1 text = text[:position] + text[position + 1:] else: