X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=lib%2Fmudpy%2Ftelnet.py;h=3ce73a308b85ef390ae1d3c9f57c539ef38b8483;hp=d6abd5a6ba4bb73d3d5255be1de17f75f5187927;hb=a9b9405dd3f37bea336b297d9cef848868591557;hpb=024e5dcea9411e8e0f8b5dc60c0d887259ded6c1 diff --git a/lib/mudpy/telnet.py b/lib/mudpy/telnet.py index d6abd5a..3ce73a3 100644 --- a/lib/mudpy/telnet.py +++ b/lib/mudpy/telnet.py @@ -106,7 +106,7 @@ def disable(user, telopt, party): def negotiate_telnet_options(user): """Reply to and remove telnet negotiation options from partial_input.""" - import misc + import mudpy.misc # make a local copy to play with text = user.partial_input @@ -198,7 +198,7 @@ def negotiate_telnet_options(user): # otherwise, strip out a two-byte IAC command elif len_text > position + 2: - misc.log("Unknown Telnet IAC command %s ignored." % command) + mudpy.misc.log("Unknown Telnet IAC command %s ignored." % command) text = text[:position] + text[position + 2:] # and this means we got the begining of an IAC