summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)