summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Kuhl <kuhl@mtu.edu>2020-11-04 11:40:07 -0500
committerScott Kuhl <kuhl@mtu.edu>2020-11-04 11:40:07 -0500
commit227412e2187b5f75a1042eac31f39a84c1042bf8 (patch)
treed749c891173df25f1086ba424c7682c8d841675c
parent7d89b2d89f73a3a2ba531fcfc5c240eadee47070 (diff)
Fix long line in previous commit
-rw-r--r--sshuttle/client.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sshuttle/client.py b/sshuttle/client.py
index 7f6e582..a85c126 100644
--- a/sshuttle/client.py
+++ b/sshuttle/client.py
@@ -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)