Fix long line in previous commit

This commit is contained in:
Scott Kuhl 2020-11-04 11:40:07 -05:00
parent 7d89b2d89f
commit 227412e218

View File

@ -424,7 +424,8 @@ def ondns(listener, method, mux, handlers):
if dstip is None:
debug1('DNS request from %r: %d bytes\n' % (srcip, len(data)))
else:
debug1('DNS request from %r to %r: %d bytes\n' % (srcip, dstip, len(data)))
debug1('DNS request from %r to %r: %d bytes\n' %
(srcip, dstip, len(data)))
chan = mux.next_channel()
dnsreqs[chan] = now + 30
mux.send(chan, ssnet.CMD_DNS_REQ, data)