Further cleanup of debug code, preparing for devel-branch merger.

This commit is contained in:
Griatch 2016-05-22 18:58:06 +02:00
parent 9f751d9334
commit 7e6cced01a

View file

@ -394,7 +394,6 @@ class TelnetOOB(object):
if self.MSDP:
msdp_cmdname = cmdname
encoded_oob = self.encode_msdp(msdp_cmdname, *args, **kwargs)
#print "sending MSDP:", encoded_oob
self.protocol._write(IAC + SB + MSDP + encoded_oob + IAC + SE)
if self.GMCP:
@ -404,5 +403,4 @@ class TelnetOOB(object):
gmcp_cmdname = "Custom.Cmd"
kwargs["cmdname"] = cmdname
encoded_oob = self.encode_gmcp(gmcp_cmdname, *args, **kwargs)
#print "sending GMCP:", encoded_oob
self.protocol._write(IAC + SB + GMCP + encoded_oob + IAC + SE)